mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00
9 lines
No EOL
242 B
JavaScript
9 lines
No EOL
242 B
JavaScript
Template.logs.helpers({
|
|
getTimestamp: function () {
|
|
return moment(this.timestamp).format("M/D, hh:mm:ss");
|
|
},
|
|
loadMoreUrl: function(){
|
|
var count = parseInt(Session.get('logsLimit')) + 100;
|
|
return '/logs/' + count;
|
|
},
|
|
}); |