April 9 update

This commit is contained in:
George Frederick "Buzz" Beurling
2020-04-09 17:20:03 -04:00
parent 94509caf3c
commit 50abb9d909
57 changed files with 2635 additions and 854 deletions

12
public/js/app.js vendored
View File

@@ -1,4 +1,16 @@
extendSidebar();
function navigate(url)
{
window.location.href = window.location+'/'+url;
}
function extendSidebar()
{
let foo = $('.nav-item.active');
if (foo.attr('parent'))
{
$('#'+foo.attr('parent')).collapse('show');
$('#link-'+foo.attr('parent')).addClass('active');
}
}