0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-12-04 16:24:22 +01:00
Bootstrap/docs/4.0/examples/offcanvas/offcanvas.js

8 lines
145 B
JavaScript
Raw Normal View History

$(function () {
'use strict'
2017-09-08 10:41:42 +02:00
$('[data-toggle="offcanvas"]').on('click', function () {
2014-02-07 19:31:08 +01:00
$('.row-offcanvas').toggleClass('active')
})
})