[Fixed Position] Begin adding color chooser

Begin adding choice of fill colors for box/text/telemetry
elements in a fixed position view, WTD-881.
This commit is contained in:
Victor Woeltjen
2015-02-23 14:52:19 -08:00
parent c183f08886
commit 46c8a456b7
2 changed files with 10 additions and 4 deletions

View File

@ -1,16 +1,16 @@
/*global define*/
define(
['./TelemetryProxy', './ElementProxy', './LineProxy'],
function (TelemetryProxy, ElementProxy, LineProxy) {
['./TelemetryProxy', './ElementProxy', './LineProxy', './BoxProxy', './TextProxy'],
function (TelemetryProxy, ElementProxy, LineProxy, BoxProxy, TextProxy) {
"use strict";
return {
"fixed.telemetry": TelemetryProxy,
"fixed.line": LineProxy,
"fixed.box": ElementProxy,
"fixed.box": BoxProxy,
"fixed.image": ElementProxy,
"fixed.text": ElementProxy
"fixed.text": TextProxy
};
}
);