Vulcan/client/views/posts/posts_top.js

19 lines
441 B
JavaScript
Raw Normal View History

Template.posts_top.posts = function() { return topPosts(); };
2012-09-18 11:49:17 +09:00
2012-10-09 16:11:30 +09:00
Template.posts_top.helpers({
moreLinkDistance: function(){
return topPosts().length * 80;
2012-10-10 11:25:00 +09:00
},
allPostsLoaded: function(){
return topPosts().length < Session.get('topPageLimit');
2012-10-09 16:11:30 +09:00
}
});
2012-10-08 16:12:47 +02:00
Template.posts_top.events({
2012-10-09 16:11:30 +09:00
'click .more-link': function(e) {
e.preventDefault();
Session.set('topPageLimit', Session.get('topPageLimit') + TOP_PAGE_PER_PAGE)
2012-10-09 12:02:37 +09:00
}
2012-10-08 16:12:47 +02:00
});