0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-12-01 13:24:25 +01:00
Bootstrap/examples/offcanvas/offcanvas.js
2013-08-15 16:40:39 -07:00

5 lines
137 B
JavaScript

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