1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-04 12:47:35 +02:00
Files
bootstrap/docs/3.3/examples/offcanvas/offcanvas.js
Mark Otto 5282643c59 beta docs
2017-08-10 21:04:59 -07:00

5 lines
140 B
JavaScript

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