diff options
Diffstat (limited to 'js/controllers/styles-controller.js')
-rwxr-xr-x | js/controllers/styles-controller.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/controllers/styles-controller.js b/js/controllers/styles-controller.js index 0e1df1e9..e95c6614 100755 --- a/js/controllers/styles-controller.js +++ b/js/controllers/styles-controller.js | |||
@@ -131,7 +131,7 @@ var stylesController = exports.StylesController = Montage.create(Component, { | |||
131 | handleChange: { | 131 | handleChange: { |
132 | value: function(notification) { | 132 | value: function(notification) { |
133 | if(notification.currentPropertyPath === "model.currentViewIdentifier") { | 133 | if(notification.currentPropertyPath === "model.currentViewIdentifier") { |
134 | if(this.currentDocument.model.currentView.identifier === "design") { | 134 | if(this.currentDocument && this.currentDocument.model.currentView.identifier === "design") { |
135 | ///// Stage stylesheet should always be found | 135 | ///// Stage stylesheet should always be found |
136 | this._stageStylesheet = this.getSheetFromElement(this.CONST.STAGE_SHEET_ID); | 136 | this._stageStylesheet = this.getSheetFromElement(this.CONST.STAGE_SHEET_ID); |
137 | // Returns null if sheet not found (as in non-ninja projects) | 137 | // Returns null if sheet not found (as in non-ninja projects) |