Skip to content

Commit

Permalink
Converted dot notation property to string equivalent so closure compi…
Browse files Browse the repository at this point in the history
…ler doesn't rename it
  • Loading branch information
keithclark committed Aug 18, 2011
1 parent 89bc655 commit 508a9bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion selectivizr.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 ) );
}
}
}
Expand Down

0 comments on commit 508a9bf

Please sign in to comment.