Files
openmct/platform/features/layout/src/elements/TextProxy.js
Victor Woeltjen 894a5b8f89 [Fixed Position] Add text color property
Add a property to the Fixed Position toolbar to set text
color, WTD-881.
2015-02-23 18:17:24 -08:00

35 lines
1.1 KiB
JavaScript

/*global define*/
define(
['./BoxProxy', './AccessorMutator'],
function (BoxProxy, AccessorMutator) {
'use strict';
/**
* Selection proxy for Text elements in a fixed position view.
*
* Note that arguments here are meant to match those expected
* by `Array.prototype.map`
*
* @constructor
* @param element the fixed position element, as stored in its
* configuration
* @param index the element's index within its array
* @param {Array} elements the full array of elements
*/
function TextProxy(element, index, elements) {
var proxy = new BoxProxy(element, index, elements);
/**
* Get and/or set the text color of this element.
* @param {string} [color] the new text color (if setting)
* @returns {string} the text color
*/
proxy.color = new AccessorMutator(element, 'color');
return proxy;
}
return TextProxy;
}
);