aboutsummaryrefslogtreecommitdiff
path: root/js/panels/css-panel/rule-list.reel
diff options
context:
space:
mode:
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