This repository has been archived on 2025-08-13. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
policies/_javascripts/bootstrap-offcanvas.js
Brian (bex) Exelbierd c2c3776490 initial commit
2018-05-15 14:12:54 +02:00

6 lines
168 B
JavaScript

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