Vulcan/client/views/posts/posts_top.js
2012-10-05 22:46:20 +09:00

8 lines
No EOL
176 B
JavaScript

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