Vulcan/client/views/posts/posts_digest.js
Tom Coleman 72d8115b1b New router is working, to some degree.
I switched over to router 2.0, and refactored the permissions a bit.
There's still a bit of work needed to get the permissions fully up to speed.
2012-11-21 14:28:18 +11:00

42 lines
No EOL
1.4 KiB
JavaScript

Template.posts_digest.helpers({
posts: function(){
return digestPosts();
},
hasPosts: function(){
return !!digestPosts().length;
},
currentDate: function(){
// return moment(Session.get('currentDate')).format("dddd, MMMM Do YYYY");
},
previousDateURL: function(){
// var currentDate=moment(Session.get('currentDate'));
// var newDate=currentDate.subtract('days', 1);
// return getDigestURL(newDate);
},
showPreviousDate: function(){
// TODO
return true;
},
nextDateURL: function(){
// var currentDate=moment(Session.get('currentDate'));
// var newDate=currentDate.add('days', 1);
// return getDigestURL(newDate);
},
showNextDate: function(){
// var currentDate=moment(Session.get('currentDate')).startOf('day');
// var today=moment(new Date()).startOf('day');
// return today.diff(currentDate, 'days') > 0
}
});
Template.posts_digest.created = function(){
// var currentDate=moment(Session.get('currentDate')).startOf('day');
// var today=moment(new Date()).startOf('day');
// $(document).bind('keydown', 'left', function(){
// Meteor.Router.to(getDigestURL(currentDate.subtract('days', 1)));
// });
// $(document).bind('keydown', 'right', function(){
// if(today.diff(currentDate, 'days') > 0)
// Meteor.Router.to(getDigestURL(currentDate.add('days', 1)));
// });
};