2017-01-15 11:33:37 -08:00
|
|
|
import { Template } from 'meteor/templating';
|
|
|
|
|
import './Body.html';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Template.Body.events({
|
|
|
|
|
"click .signOut": function(event, template) {
|
|
|
|
|
AccountsTemplates.logout();
|
2017-10-20 14:54:58 -07:00
|
|
|
},
|
|
|
|
|
"click .leftSidebarMenuButton": function(event, template) {
|
|
|
|
|
event.preventDefault();
|
|
|
|
|
$('nav.leftSidebarContainer').toggleClass('menuShow');
|
|
|
|
|
},
|
|
|
|
|
"click .menuArea a": function(event, template) {
|
|
|
|
|
$('nav.leftSidebarContainer').toggleClass('menuShow');
|
2017-11-25 15:07:14 -08:00
|
|
|
},
|
|
|
|
|
"click .menuArea a .subMenu": function(event, template) {
|
|
|
|
|
$('nav.leftSidebarContainer').toggleClass('menuShow');
|
2017-01-15 11:33:37 -08:00
|
|
|
}
|
|
|
|
|
});
|