We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When the library is bundled with a tool like rollup like so:
import 'jquery-ui-multiselect-widget'; import 'jquery-ui-multiselect-widget/src/jquery.multiselect.filter';
the output will be wrapped in a "use strict" block. This causes an error when I click an option in the header:
Uncaught ReferenceError: hdgClass is not defined
De hdgClass variable is missing a var (line 1008)
hdgClass
var
for (hdgClass in i) { /* ... */ }
should be:
for (var hdgClass in i) { /* ... */ }
I've attached the output of the rollop bundle: lib.jquery-ui-multiselect.min.js.zip
The text was updated successfully, but these errors were encountered:
No branches or pull requests
What is the current behavior?
When the library is bundled with a tool like rollup like so:
the output will be wrapped in a "use strict" block. This causes an error when I click an option in the header:
Uncaught ReferenceError: hdgClass is not defined
De
hdgClass
variable is missing avar
(line 1008)should be:
If the current behavior is a bug, please provide the steps to reproduce and if possible a minimal demo
I've attached the output of the rollop bundle:
lib.jquery-ui-multiselect.min.js.zip
Please tell us about your setup
The text was updated successfully, but these errors were encountered: