diff options
author | Stephan Bergmann <stephan.bergmann@allotropia.de> | 2024-08-26 09:24:34 +0200 |
---|---|---|
committer | Stephan Bergmann <stephan.bergmann@allotropia.de> | 2024-08-26 16:29:28 +0200 |
commit | a3a71ed916994df700f42b58b6400dafed3db8e4 (patch) | |
tree | 432f2cab5a7d94c1b1fd23bc693002d998a0bb6e /static/emscripten | |
parent | 42f677c5f67a23e0cfb4fcc664efce078718489d (diff) |
'use strict' is of no use here...
...in snippets that are included with --pre-js/--post-js
Change-Id: I928aa16b78284314796a0645479dce0dfc7b42cc
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/172383
Reviewed-by: Stephan Bergmann <stephan.bergmann@allotropia.de>
Tested-by: Jenkins
Diffstat (limited to 'static/emscripten')
-rw-r--r-- | static/emscripten/environment.js | 2 | ||||
-rw-r--r-- | static/emscripten/uno.js | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/static/emscripten/environment.js b/static/emscripten/environment.js index 74536a665ccc..29f2dfaa0bc8 100644 --- a/static/emscripten/environment.js +++ b/static/emscripten/environment.js @@ -1,5 +1,3 @@ -'use strict'; - if (!('preRun' in Module)) Module['preRun'] = []; Module.preRun.push(function() { ENV.MAX_CONCURRENCY = '4'; diff --git a/static/emscripten/uno.js b/static/emscripten/uno.js index 84b301f3e3b3..af1f20dd5cdb 100644 --- a/static/emscripten/uno.js +++ b/static/emscripten/uno.js @@ -7,8 +7,6 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -'use strict'; - Module.unoTagSymbol = Symbol('unoTag'); Module.uno_init = new Promise(function (resolve, reject) { |