aboutsummaryrefslogtreecommitdiff
path: root/js/panels/css-panel/rule-list.reel
diff options
context:
space:
mode:
authorEric Guzman2012-05-08 14:49:37 -0700
committerEric Guzman2012-05-08 14:49:37 -0700
commit5330de3ddb40a4db8a2a0572725ab64b23770b3b (patch)
tree22c77665fa963a853ed64589ce60216aefad2bf0 /js/panels/css-panel/rule-list.reel
parenteb80f8a610100f908b5cb9ffc65bfa94f8a23c21 (diff)
downloadninja-5330de3ddb40a4db8a2a0572725ab64b23770b3b.tar.gz
CSS Panel - Added update of new rules to rule list
Diffstat (limited to 'js/panels/css-panel/rule-list.reel')
-rw-r--r--js/panels/css-panel/rule-list.reel/rule-list.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/panels/css-panel/rule-list.reel/rule-list.js b/js/panels/css-panel/rule-list.reel/rule-list.js
index be9f61d7..c9eeb64b 100644
--- a/js/panels/css-panel/rule-list.reel/rule-list.js
+++ b/js/panels/css-panel/rule-list.reel/rule-list.js
@@ -85,13 +85,13 @@ exports.RuleList = Montage.create(Component, {
85 }, 85 },
86 86
87 update : { 87 update : {
88 value: function() { 88 value: function(rules) {
89 this.childComponents.forEach(function(component) { 89 this.childComponents.forEach(function(component) {
90 component.update(); 90 component.update();
91 }, this); 91 }, this);
92 92
93 //// TODO: find new styles based on selection 93 //// TODO: find new styles based on selection
94 if() 94
95 } 95 }
96 }, 96 },
97 97