mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 12:16:37 -04:00
8 lines
177 B
JavaScript
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";
|
|
}
|