Vulcan/client/views/posts/posts_top.js

8 lines
176 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";
}