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
This input: _globals = (function(){ return this || (0,eval)("this"); }());
was getting minified by 3.3.21 to a=function(){return this||(0,eval)("this")}()
but with 3.3.24 it's being minified to s=function(){return this||eval("this")}()
This discrepancy seems to be leading to this error message: TypeError: s is undefined[Learn More]
query-builder.standalone.js:9:2126
Bug report
3.3.24
This input:
_globals = (function(){ return this || (0,eval)("this"); }());
was getting minified by 3.3.21 to
a=function(){return this||(0,eval)("this")}()
but with 3.3.24 it's being minified to
s=function(){return this||eval("this")}()
This discrepancy seems to be leading to this error message:
TypeError: s is undefined[Learn More]
query-builder.standalone.js:9:2126
...js/lib/query-builder.standalone.js:9:2126
...js/lib/query-builder.standalone.js:9:1093
options: {
output: {
comments: "/^/*!/"
}
}
The input that we are trying to minify comes from:
https://raw.githubusercontent.com/mistic100/jQuery-QueryBuilder/2.5.1/dist/js/query-builder.standalone.js
The text was updated successfully, but these errors were encountered: