diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/compress.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/compress.js b/lib/compress.js index 216826d6..ebd3dd7a 100644 --- a/lib/compress.js +++ b/lib/compress.js @@ -66,6 +66,7 @@ function Compressor(options, false_by_default) { join_vars : !false_by_default, cascade : !false_by_default, side_effects : !false_by_default, + screw_ie8 : false, warnings : true, global_defs : {} @@ -1961,7 +1962,7 @@ merge(Compressor.prototype, { var prop = self.property; if (prop instanceof AST_String && compressor.option("properties")) { prop = prop.getValue(); - if (is_identifier(prop)) { + if (is_identifier(prop) || compressor.option("screw_ie8")) { return make_node(AST_Dot, self, { expression : self.expression, property : prop |