aboutsummaryrefslogtreecommitdiff
path: root/js/controllers/styles-controller.js
diff options
context:
space:
mode:
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 02c3dad9..cbc00676 100755
--- a/js/controllers/styles-controller.js
+++ b/js/controllers/styles-controller.js
@@ -1131,7 +1131,7 @@ var stylesController = exports.StylesController = Montage.create(Component, {
1131 ///// The dominant rule might not have the style property defined - why? 1131 ///// The dominant rule might not have the style property defined - why?
1132 ///// If no rules have the property defined, we can use the 1132 ///// If no rules have the property defined, we can use the
1133 ///// most-specific single-target rule as the dominant rule (for setting styles) 1133 ///// most-specific single-target rule as the dominant rule (for setting styles)
1134 return element.ownerDocument.defaultView.getComputedStyle(element).getPropertyValue(property); 1134 return (element.ownerDocument.defaultView ? element.ownerDocument.defaultView.getComputedStyle(element).getPropertyValue(property) : null);
1135 } 1135 }
1136 1136
1137 return value; 1137 return value;