diff options
Diffstat (limited to 'js/controllers')
-rwxr-xr-x | js/controllers/styles-controller.js | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/js/controllers/styles-controller.js b/js/controllers/styles-controller.js index ec4314f9..f7c98023 100755 --- a/js/controllers/styles-controller.js +++ b/js/controllers/styles-controller.js | |||
@@ -94,11 +94,18 @@ var stylesController = exports.StylesController = Montage.create(Component, { | |||
94 | // Returns null if sheet not found (as in non-ninja projects) | 94 | // Returns null if sheet not found (as in non-ninja projects) |
95 | // Setter will handle null case | 95 | // Setter will handle null case |
96 | this.defaultStylesheet = this.getSheetFromElement(this.CONST.DEFAULT_SHEET_ID); | 96 | this.defaultStylesheet = this.getSheetFromElement(this.CONST.DEFAULT_SHEET_ID); |
97 | 97 | ||
98 | //debugger; | 98 | this.userStyleSheets = nj.toArray(document._document.styleSheets).filter(function(sheet) { |
99 | return sheet !== this._stageStylesheet; | ||
100 | }, this); | ||
101 | |||
102 | NJevent('styleSheetsReady', this); | ||
99 | }, | 103 | }, |
100 | enumerable : false | 104 | enumerable : false |
101 | }, | 105 | }, |
106 | userStyleSheets : { | ||
107 | value : null | ||
108 | }, | ||
102 | _stageStylesheet : { | 109 | _stageStylesheet : { |
103 | value : null | 110 | value : null |
104 | }, | 111 | }, |
@@ -183,6 +190,7 @@ var stylesController = exports.StylesController = Montage.create(Component, { | |||
183 | ///// attach specificity to rule object | 190 | ///// attach specificity to rule object |
184 | ///// if rule is css keyframes, return rule and don't attach specificity | 191 | ///// if rule is css keyframes, return rule and don't attach specificity |
185 | if (rule instanceof WebKitCSSKeyframesRule) { | 192 | if (rule instanceof WebKitCSSKeyframesRule) { |
193 | |||
186 | return rule; | 194 | return rule; |
187 | } | 195 | } |
188 | rule[this.CONST.SPECIFICITY_KEY] = this.getSpecificity(rule.selectorText); | 196 | rule[this.CONST.SPECIFICITY_KEY] = this.getSpecificity(rule.selectorText); |
@@ -1244,6 +1252,8 @@ var stylesController = exports.StylesController = Montage.create(Component, { | |||
1244 | 1252 | ||
1245 | this.styleSheetModified(sheet); | 1253 | this.styleSheetModified(sheet); |
1246 | 1254 | ||
1255 | NJevent('newStyleSheet', sheet); | ||
1256 | |||
1247 | return sheet; | 1257 | return sheet; |
1248 | } | 1258 | } |
1249 | }, | 1259 | }, |
@@ -1306,11 +1316,10 @@ var stylesController = exports.StylesController = Montage.create(Component, { | |||
1306 | this.dirtyStyleSheets.length = 0; | 1316 | this.dirtyStyleSheets.length = 0; |
1307 | 1317 | ||
1308 | if(doc) { | 1318 | if(doc) { |
1309 | var stillDirty = this.dirtyStyleSheets.filter(function(sheet) { | 1319 | this.dirtyStyleSheets = null; |
1320 | this.dirtyStyleSheets = this.dirtyStyleSheets.filter(function(sheet) { | ||
1310 | return sheet.document !== doc; | 1321 | return sheet.document !== doc; |
1311 | }); | 1322 | }); |
1312 | this.dirtyStyleSheets = null; | ||
1313 | this.dirtyStyleSheets = stillDirty; | ||
1314 | } | 1323 | } |
1315 | 1324 | ||
1316 | 1325 | ||