mirror of
https://github.com/nasa/openmct.git
synced 2025-06-19 07:38:15 +00:00
[Fixed Position] Allow adding elements
Allow adding of elements (without any element-specific properties beyond type.) WTD-880.
This commit is contained in:
@ -1,12 +1,16 @@
|
||||
/*global define*/
|
||||
|
||||
define(
|
||||
['./TelemetryProxy'],
|
||||
function (TelemetryProxy) {
|
||||
['./TelemetryProxy', './ElementProxy'],
|
||||
function (TelemetryProxy, ElementProxy) {
|
||||
"use strict";
|
||||
|
||||
return {
|
||||
"fixed.telemetry": TelemetryProxy
|
||||
"fixed.telemetry": TelemetryProxy,
|
||||
"fixed.line": ElementProxy,
|
||||
"fixed.box": ElementProxy,
|
||||
"fixed.image": ElementProxy,
|
||||
"fixed.text": ElementProxy
|
||||
};
|
||||
}
|
||||
);
|
Reference in New Issue
Block a user