mirror of
https://github.com/twbs/bootstrap.git
synced 2025-01-17 09:52:29 +01:00
Convert offcanvas.js to vanilla JS.
This commit is contained in:
parent
e04a5139ab
commit
709dcb98dd
@ -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')
|
||||||
})
|
})
|
||||||
})
|
}())
|
||||||
|
Loading…
x
Reference in New Issue
Block a user