mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
14 lines
328 B
JavaScript
14 lines
328 B
JavaScript
Template.body.events({
|
|
"click .open-sidebar": function () {
|
|
Session.set("sidebarOpen", true);
|
|
},
|
|
"click .close-sidebar": function () {
|
|
Session.set("sidebarOpen", false);
|
|
}
|
|
});
|
|
|
|
Template.body.helpers({
|
|
openSidebar: function () {
|
|
return Session.get("sidebarOpen") ? "sidebar-open" : "sidebar-closed";
|
|
}
|
|
}); |