UNPKG
ucan-ext-js-kitchen-sink
Version:
latest (0.0.1)
0.0.1
my-ext-gen-app description for Ext JS app MyExtGenApp
www.sencha.com
ucan-ext-js-kitchen-sink
/
packages
/
local
/
common-ux
/
src
/
util
/
components
/
DynamicColorTool.js
12 lines
(10 loc)
•
283 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
Ext.
define
(
'UCAN.common.util.components.DynamicColorTool'
, {
extend
:
'Ext.Tool'
,
alias
:
'widget.dynamicColorTool'
,
config
: {
dynamicColor
:
null
},
updateDynamicColor
: function(config) { this.element.dom.firstChild.style.cssText =
'color: '
+ config +
';'
; } });