Fixed all known bugs; Modified the menu to hide; Fixed the tables to scroll with a fixed header.

This commit is contained in:
Wynne Crisman
2017-10-20 14:54:58 -07:00
parent 83e8268375
commit f848ea9a8f
34 changed files with 1019 additions and 821 deletions

View File

@@ -5,5 +5,12 @@ import './Body.html';
Template.Body.events({
"click .signOut": function(event, template) {
AccountsTemplates.logout();
},
"click .leftSidebarMenuButton": function(event, template) {
event.preventDefault();
$('nav.leftSidebarContainer').toggleClass('menuShow');
},
"click .menuArea a": function(event, template) {
$('nav.leftSidebarContainer').toggleClass('menuShow');
}
});