mirror of
https://github.com/nasa/openmct.git
synced 2025-04-11 21:31:06 +00:00
[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:
parent
c183f08886
commit
46c8a456b7
@ -84,6 +84,12 @@
|
||||
"key": "bottom"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"property": "fill",
|
||||
"glyph": "X",
|
||||
"control": "textfield",
|
||||
"inclusive": true
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -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
|
||||
};
|
||||
}
|
||||
);
|
Loading…
x
Reference in New Issue
Block a user