Vulcan/client/templates/posts_top.js
2012-09-18 11:49:17 +09: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";
}