diff options
author | Jose Antonio Marquez | 2012-07-23 15:54:59 -0700 |
---|---|---|
committer | Jose Antonio Marquez | 2012-07-23 15:54:59 -0700 |
commit | afc7ad4f240fdf7890a79c2d4d7f8eb2e7c30a34 (patch) | |
tree | dfaa3a21f256846f0dca9dfd7a610ab738b738a7 /js/panels/css-panel/rule-list.reel/rule-list.js | |
parent | b3869f66ac77b31cbc0bd36ef360c3fa79c8d365 (diff) | |
parent | faa78ac6b0f9944dd406bed3c8170714ca02e3f9 (diff) | |
download | ninja-afc7ad4f240fdf7890a79c2d4d7f8eb2e7c30a34.tar.gz |
Merge branch 'refs/heads/Ninja-Master' into Document
Diffstat (limited to 'js/panels/css-panel/rule-list.reel/rule-list.js')
-rw-r--r-- | js/panels/css-panel/rule-list.reel/rule-list.js | 2 |
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 ae0c4611..b9dc2b95 100644 --- a/js/panels/css-panel/rule-list.reel/rule-list.js +++ b/js/panels/css-panel/rule-list.reel/rule-list.js | |||
@@ -106,7 +106,7 @@ exports.RuleList = Montage.create(Component, { | |||
106 | // found rule in our component list, or it's the inline rule | 106 | // found rule in our component list, or it's the inline rule |
107 | ruleComponent.update(); | 107 | ruleComponent.update(); |
108 | foundIndices.push(index); | 108 | foundIndices.push(index); |
109 | } else if(!ruleComponent.applied) { /// remove rule (unless unapplied) | 109 | } else if(ruleComponent.applied) { /// remove rule (unless unapplied) |
110 | this.rulesToRemove.push(ruleComponent); | 110 | this.rulesToRemove.push(ruleComponent); |
111 | } | 111 | } |
112 | }, this); | 112 | }, this); |