diff options
author | Eric Guzman | 2012-07-20 11:23:39 -0700 |
---|---|---|
committer | Eric Guzman | 2012-07-20 11:23:39 -0700 |
commit | 8fdf2fc8aefee68aec4c7b5891e0375f704cbf26 (patch) | |
tree | d59bc1f1461a19f8a29f7ea7a07726e4875c3967 /js/panels/css-panel/rule-list.reel/rule-list.js | |
parent | 36be3f52a0eaf176213f4d46056e684e0a1b7653 (diff) | |
download | ninja-8fdf2fc8aefee68aec4c7b5891e0375f704cbf26.tar.gz |
CSS Panel - Fix updating when media changes, sheets are deleted.
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); |