Skip to content

Commit

Permalink
Merge pull request #14 from gameclosure/fix-update-js-compiler-to-ecm…
Browse files Browse the repository at this point in the history
…ascript5

fix (js compiler): update to ecmascript5
  • Loading branch information
collingreen committed Jan 7, 2015
2 parents ea2fba8 + 2bbc5d6 commit 15f6910
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/build/common/jsCompiler.js
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,8 @@ exports.JSCompiler = Class(function () {

var closureOpts = [
'--compilation_level', 'SIMPLE_OPTIMIZATIONS',
'--jscomp_off', 'internetExplorerChecks'
'--jscomp_off', 'internetExplorerChecks',
'--language_in', 'ECMASCRIPT5'
];

this._api.jvmtools.exec({
Expand Down

0 comments on commit 15f6910

Please sign in to comment.