mirror of
https://github.com/nasa/openmct.git
synced 2025-06-19 15:43:48 +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:
@ -84,6 +84,12 @@
|
|||||||
"key": "bottom"
|
"key": "bottom"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"property": "fill",
|
||||||
|
"glyph": "X",
|
||||||
|
"control": "textfield",
|
||||||
|
"inclusive": true
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -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
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
);
|
);
|
Reference in New Issue
Block a user