aboutsummaryrefslogtreecommitdiff
path: root/js/panels/color/colorpanelpopup.reel
diff options
context:
space:
mode:
authorJose Antonio Marquez2012-06-26 11:47:50 -0700
committerJose Antonio Marquez2012-06-26 11:47:50 -0700
commit079192983b3966c3699d42716dae6c1db930a3f1 (patch)
treea6a1ae9049a4f11544bb9417ac951f0f07dc9616 /js/panels/color/colorpanelpopup.reel
parenta1497ed180e668003c274dda90bfb9ab8bd1963e (diff)
downloadninja-079192983b3966c3699d42716dae6c1db930a3f1.tar.gz
Fixing hex value syncing in popups
Diffstat (limited to 'js/panels/color/colorpanelpopup.reel')
-rwxr-xr-xjs/panels/color/colorpanelpopup.reel/colorpanelpopup.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/panels/color/colorpanelpopup.reel/colorpanelpopup.js b/js/panels/color/colorpanelpopup.reel/colorpanelpopup.js
index 283de5a8..4865d3dd 100755
--- a/js/panels/color/colorpanelpopup.reel/colorpanelpopup.js
+++ b/js/panels/color/colorpanelpopup.reel/colorpanelpopup.js
@@ -60,7 +60,7 @@ exports.ColorPanelPopup = Montage.create(Component, {
60 value: function () { 60 value: function () {
61 // 61 //
62 this._components = null; 62 this._components = null;
63 this._components = {wheel: null, combo: null, gradient: null}; 63 this._components = {wheel: null, combo: null, gradient: null, hex: null};
64 } 64 }
65 }, 65 },
66 //////////////////////////////////////////////////////////////////// 66 ////////////////////////////////////////////////////////////////////
@@ -153,7 +153,7 @@ exports.ColorPanelPopup = Montage.create(Component, {
153 this.btnGradient.style.display = 'none'; 153 this.btnGradient.style.display = 'none';
154 } 154 }
155 // 155 //
156 this.application.ninja.colorController.colorView.addButton('hexinput', this.inputHex, this.colorManager); 156 this._components.hex = this.application.ninja.colorController.colorView.addButton('hexinput', this.inputHex, this.colorManager);
157 // 157 //
158 this._components.combo.slider.needsDraw = true; 158 this._components.combo.slider.needsDraw = true;
159 this._components.combo.hottext.needsDraw = true; 159 this._components.combo.hottext.needsDraw = true;