Vulcan/client/views/posts/posts_top.js

14 lines
268 B
JavaScript
Raw Normal View History

2012-09-18 11:49:17 +09:00
Template.posts_top.posts = function(){
var posts = Posts.find({}, {sort: {score: -1}});
return posts;
};
Template.posts_top.created = function(){
window.sortBy="score";
}
2012-10-05 14:08:46 +09:00
Template.posts_top.helpers({
canView: function(){
return canView(Meteor.user());
}
});