mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00
14 lines
319 B
JavaScript
14 lines
319 B
JavaScript
Template.update_banner.helpers({
|
|
showBanner: function () {
|
|
return Session.get('updateVersion');
|
|
},
|
|
version: function () {
|
|
return Session.get('updateVersion');
|
|
},
|
|
currentVersion: function () {
|
|
return Telescope.VERSION;
|
|
},
|
|
message: function () {
|
|
return Session.get('updateMessage');
|
|
}
|
|
});
|