In Boostrap 4 when using Collapsible we used something similar to:
const toggler = jQuery(sectionnode).find(this.selectors.MODALTOGGLER); |
Once that Boostrap 5 is integrated we need to review all code touching collapsible and attempt to replace it with vanilla javascript like:
const toggler = sectionnode.querySelector(this.selectors.MODALTOGGLER); |
This sample code is from MDL-81683
- has been marked as being related by
-
MDL-81683 Add subsections to the move activity modal.
-
- Closed
-