[Fixed Position] Add text color property

Add a property to the Fixed Position toolbar to set text
color, WTD-881.
This commit is contained in:
Victor Woeltjen
2015-02-23 18:17:24 -08:00
parent 13793e221e
commit 894a5b8f89
7 changed files with 19 additions and 4 deletions

View File

@ -20,6 +20,13 @@ define(
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;
}