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
In BS 5.1 there where a few changes. I fix this for my case, andd won't be using the gem anymore (thanks for sharing it though!)
I just wanted to share the problems, in case this want's to get fixed:
Some functions got removed from jquery so
typeof $().emulateTransitionEnd === 'function' // does not exist anymore (the version is still properly saved in $.fn.tooltip.Constructor.VERSION[0])
typeof $().modal === 'function' // won't work also, but this can be changed to: typeof bootstrap.Modal === 'function'
And the modal itself changed too, so this is a html snippet for the modal that works as expected:
const MODAL=` <div class="modal" id="confirmation_dialog" role="dialog"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header bg-light"> <h4 class="modal-title"> ... </h4> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> </div> <div class="modal-body"></div> <div class="modal-footer"></div> </div> </div> </div> `
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In BS 5.1 there where a few changes. I fix this for my case, andd won't be using the gem anymore (thanks for sharing it though!)
I just wanted to share the problems, in case this want's to get fixed:
Some functions got removed from jquery so
And the modal itself changed too, so this is a html snippet for the modal that works as expected:
The text was updated successfully, but these errors were encountered: