aboutsummaryrefslogtreecommitdiff
path: root/js/panels
diff options
context:
space:
mode:
authorValerio Virgillito2012-06-27 10:58:44 -0700
committerValerio Virgillito2012-06-27 10:58:44 -0700
commit913f5cdce07072e7ba6ba8063a3bd19e7eb00a46 (patch)
tree57e0d06f786d57946c11ab881faeef4d9b9a6f78 /js/panels
parentd8bb1bf1537166753a53000e31ece8f99c7daaaa (diff)
parent2ebf3e3ea24d0d580575dfa13d31588dac1de445 (diff)
downloadninja-913f5cdce07072e7ba6ba8063a3bd19e7eb00a46.tar.gz
Merge branch 'refs/heads/master' into google-components-fixes
Diffstat (limited to 'js/panels')
-rw-r--r--js/panels/css-panel/rule-list.reel/rule-list.js2
1 files changed, 1 insertions, 1 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 27d74b2f..b4cd9e97 100644
--- a/js/panels/css-panel/rule-list.reel/rule-list.js
+++ b/js/panels/css-panel/rule-list.reel/rule-list.js
@@ -81,7 +81,7 @@ exports.RuleList = Montage.create(Component, {
81 // found rule in our component list, or it's the inline rule 81 // found rule in our component list, or it's the inline rule
82 ruleComponent.update(); 82 ruleComponent.update();
83 foundIndices.push(index); 83 foundIndices.push(index);
84 } else if(!rule.applied) { /// remove rule (unless unapplied) 84 } else if(!ruleComponent.applied) { /// remove rule (unless unapplied)
85 this.rulesToRemove.push(ruleComponent); 85 this.rulesToRemove.push(ruleComponent);
86 } 86 }
87 }, this); 87 }, this);