diff options
author | Valerio Virgillito | 2012-07-23 14:56:31 -0700 |
---|---|---|
committer | Valerio Virgillito | 2012-07-23 14:56:31 -0700 |
commit | f16744e7a48a89fb7b951ac05e4e1711a07c61ac (patch) | |
tree | ac3b4bb6d4e2ce2c04f366b70fe361658bcd59d1 /js/panels/css-panel/rule-list.reel/rule-list.js | |
parent | c25c853fe991d4bdf3cf0b5945c574bbfd5fc597 (diff) | |
parent | 74d3af4650e549afe6cd6bf11ba0bcae89fca602 (diff) | |
download | ninja-f16744e7a48a89fb7b951ac05e4e1711a07c61ac.tar.gz |
Merge branch 'minorFixes_7.1' of https://github.com/ericguzman/ninja into v0.7.1
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); |