quick-docs/_javascripts/bootstrap-offcanvas.js
Brian (bex) Exelbierd cdfa79c99e initial commit
2017-10-25 23:55:53 +02:00

6 lines
168 B
JavaScript

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