You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 3, 2017. It is now read-only.
Redefinning variable is disallowed in strict mode. Be sure to be in fully compliant ES5 environment.
The "use strict" directive is only recognized at the top of a script or function, which makes it sensitive to script concatenation.
So which way to go?
Never concatenate strict files an nonstrict files.
Concatenate files by wrapping their bodies in immediatly invocked function expressions
//file01.js
(function() {
"use strict";
function foo() {
// ...
}
// ...
})();
//file02.js no strictmode
(function() {
function foo() {
var arg = [];
// ...
}
// ...
})();
The text was updated successfully, but these errors were encountered:
The build should now be es5 compatible. There are certain modules however that are now, and for those we at the moment force the build to continue automatically.
Thanks for opening a ticket with uMobile app phonegap. 👍 🙇♂️
The uMobile app phonegap is no longer being actively maintained. ⛔
For alternatives we recommend the uMobile Android App and the uMobile iOS app. ✅
Thanks again for contributing to the uMobile app phonegap! ✨
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Redefinning variable is disallowed in strict mode. Be sure to be in fully compliant ES5 environment.
The "use strict" directive is only recognized at the top of a script or function, which makes it sensitive to script concatenation.
So which way to go?
//file01.js
(function() {
"use strict";
function foo() {
// ...
}
// ...
})();
//file02.js no strictmode
(function() {
function foo() {
var arg = [];
// ...
}
// ...
})();
The text was updated successfully, but these errors were encountered: