mirror of
https://github.com/twbs/bootstrap.git
synced 2024-12-13 01:08:58 +01:00
8 lines
148 B
JavaScript
8 lines
148 B
JavaScript
|
$(function () {
|
||
|
'use strict'
|
||
|
|
||
|
$('[data-toggle="offcanvas"]').on('click', function () {
|
||
|
$('.offcanvas-collapse').toggleClass('open')
|
||
|
})
|
||
|
})
|