[Fixed Position] Add text, image properties

Add buttons for text, image properties to the Fixed Position
toolbar, WTD-881.
This commit is contained in:
Victor Woeltjen
2015-02-23 19:16:09 -08:00
parent 0030efc29e
commit 1c69d1f2da
5 changed files with 27 additions and 13 deletions

View File

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