-
Notifications
You must be signed in to change notification settings - Fork 227
New issue
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
Dropdown menus in toolbar not working with bootstrap 5 #507
Comments
See summernote/summernote#4604 For now, add this code somewhere:
I ran collectstatic and then dumped it into the top of |
I have since switched from bs5 to Lite version but this wouldn't work as the summernote is being rendered after the page is loading and the function (A similar one I tried before) does not detect the element as the element is not yet present. |
The mutation observer I posted watches the document body so even stuff that's added later gets observed. It's working fine for me, maybe check the usual suspects like seeing if the js is actually firing and try with and without an iframe? |
The dropdowns in the toolbar of the the in place widget aren't working with Bootstrap 5.
The issue is pretty straightforward, these buttons have an attribute called data-toggle which needs to be data-bs-toggle. Replacing it seems to be working.
Not working:
Working:
I have checked everything else, there's no double jquery import, the event listeners are being attached too. This is the only apparent problem
The text was updated successfully, but these errors were encountered: