aboutsummaryrefslogtreecommitdiff
path: root/js/controllers/styles-controller.js
diff options
context:
space:
mode:
authorAnanya Sen2012-07-25 12:29:16 -0700
committerAnanya Sen2012-07-25 12:29:16 -0700
commite7509af2b2fad6ab23ea07e6e46e88a4ee0d03f1 (patch)
tree8a180716f60bf87073233732753da65711c28732 /js/controllers/styles-controller.js
parentfa2e82cf10aaa4900a462410cbb99b5b0433a1b1 (diff)
downloadninja-e7509af2b2fad6ab23ea07e6e46e88a4ee0d03f1.tar.gz
adding null check for currentDocument to prevent error
Signed-off-by: Ananya Sen <Ananya.Sen@motorola.com>
Diffstat (limited to 'js/controllers/styles-controller.js')
-rwxr-xr-xjs/controllers/styles-controller.js2
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)