mirror of
https://github.com/twbs/bootstrap.git
synced 2025-08-22 21:22:52 +02:00
Convert offcanvas.js to vanilla JS.
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
$(function () {
|
(function () {
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
$('[data-toggle="offcanvas"]').on('click', function () {
|
document.querySelector('[data-toggle="offcanvas"]').addEventListener('click', function () {
|
||||||
$('.offcanvas-collapse').toggleClass('open')
|
document.querySelector('.offcanvas-collapse').classList.toggle('open')
|
||||||
})
|
})
|
||||||
})
|
}())
|
||||||
|
Reference in New Issue
Block a user