Thanks to visit codestin.com
Credit goes to github.com

Skip to content
This repository was archived by the owner on Jun 20, 2023. It is now read-only.

Commit 090ed3e

Browse files
bigdrumnchanged
authored andcommitted
fix: dev-imports should contain es5 only. (#1439)
Using a ES6 feature in dev-imports.js breaks uglifyjs.
1 parent d6d5bc4 commit 090ed3e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/fuse-box-responsive-api/dev-imports.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ var $fsmp$ = (function() {
22
function loadRemoteScript(url) {
33
return Promise.resolve().then(function() {
44
if (FuseBox.isBrowser) {
5-
let d = document;
5+
var d = document;
66
var head = d.getElementsByTagName("head")[0];
77
var target;
88
if (/\.css$/.test(url)) {

0 commit comments

Comments
 (0)