mirror of
https://github.com/vale981/Vulcan
synced 2025-03-08 19:11:38 -05:00
8 lines
204 B
JavaScript
8 lines
204 B
JavaScript
Template.adminWrapper.helpers({
|
|
contents: function () {
|
|
return Router.current().route.getName();
|
|
},
|
|
contentsClass: function () {
|
|
return Router.current().route.getName()+"-contents";
|
|
}
|
|
});
|