0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-01-18 10:52:19 +01:00

8 lines
204 B
JavaScript
Raw Normal View History

2018-11-28 21:46:06 +02:00
(function () {
'use strict'
document.querySelector('#navbarSideCollapse').addEventListener('click', function () {
2018-11-28 21:46:06 +02:00
document.querySelector('.offcanvas-collapse').classList.toggle('open')
})
2019-02-26 13:20:34 +02:00
})()