[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

@ -84,6 +84,12 @@
"key": "bottom" "key": "bottom"
} }
] ]
},
{
"property": "fill",
"glyph": "X",
"control": "textfield",
"inclusive": true
} }
] ]
}, },

View File

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