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