1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-09-26 05:19:15 +02:00
Files
bootstrap/docs/4.0/examples/offcanvas/offcanvas.js
2017-09-08 11:41:42 +03:00

6 lines
147 B
JavaScript

$(document).ready(function () {
$('[data-toggle="offcanvas"]').on('click', function () {
$('.row-offcanvas').toggleClass('active')
});
});