Vulcan/client/views/posts/posts_top.js
2012-10-04 11:17:57 +10:00

8 lines
177 B
JavaScript

Template.posts_top.posts = function(){
var posts = Posts.find({}, {sort: {score: -1}});
return posts;
};
Template.posts_top.created = function(){
window.sortBy="score";
}