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
It seems to me that bootstrap still has an artificial dependency on the jQuery global that seems unnecessary.
jQuery
At the top of the file jquery is imported but then the jQuery global is used.
jquery
bootstrap/js/src/index.js
Line 1 in a4667be
But then the "check" uses the global
Lines 21 to 32 in a4667be
This pattern is repeated in other files as well, the top imports jquery as $ but then uses jQuery in code. Should it not use $ instead?
$
I'm asking from a build tool perspective which wouldn't have any issues if the imported object was used instead of the global?
The text was updated successfully, but these errors were encountered:
@Johann-S: should we also check for $ in index.js? This should be more flexible.
Sorry, something went wrong.
yep agreed with @thheller
No branches or pull requests
It seems to me that bootstrap still has an artificial dependency on the
jQuery
global that seems unnecessary.At the top of the file
jquery
is imported but then thejQuery
global is used.bootstrap/js/src/index.js
Line 1 in a4667be
But then the "check" uses the global
bootstrap/js/src/index.js
Lines 21 to 32 in a4667be
This pattern is repeated in other files as well, the top imports
jquery
as$
but then usesjQuery
in code. Should it not use$
instead?I'm asking from a build tool perspective which wouldn't have any issues if the imported object was used instead of the global?
The text was updated successfully, but these errors were encountered: