From 508a9bf60855024b11a29d0b4f824acd2c346baf Mon Sep 17 00:00:00 2001 From: Keith Clark Date: Thu, 18 Aug 2011 23:38:43 +0100 Subject: [PATCH] Converted dot notation property to string equivalent so closure compiler doesn't rename it --- selectivizr.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/selectivizr.js b/selectivizr.js index b9b6c0a..35d6bfc 100755 --- a/selectivizr.js +++ b/selectivizr.js @@ -462,7 +462,7 @@ References: if (stylesheet.href != EMPTY_STRING) { url = resolveUrl(stylesheet.href); if (url) { - stylesheet.cssText = stylesheet.rawCssText = patchStyleSheet( parseStyleSheet( url ) ); + stylesheet.cssText = stylesheet["rawCssText"] = patchStyleSheet( parseStyleSheet( url ) ); } } }