Merge branch 'master' into design

This commit is contained in:
Jamie Kerner 2019-02-24 17:10:29 +01:00 committed by Jamie Kerner
commit 20295558d1
3 changed files with 438 additions and 2 deletions

12
public_html/js/sidebar.js Normal file
View file

@ -0,0 +1,12 @@
// https://bootstrapious.com/p/bootstrap-sidebar
$(document).ready(function () {
$('#sidebarCollapse').on('click touch', function () {
$('#sidebar').removeClass('active');
});
$('#sidebarShow').on('click touch', function () {
$('#sidebar').addClass('active');
});
});