9 lines
161 B
JavaScript
9 lines
161 B
JavaScript
// at the beginning
|
|
Session.set("templateName", "alarm");
|
|
|
|
Template.body.helpers({
|
|
template_name: function() {
|
|
return Session.get("templateName");
|
|
}
|
|
});
|