mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00
15 lines
290 B
JavaScript
15 lines
290 B
JavaScript
Template.posts_top.posts = function(){
|
|
var posts = Posts.find();
|
|
return posts;
|
|
};
|
|
|
|
Template.posts_top.created = function(){
|
|
window.sortBy="score";
|
|
}
|
|
|
|
Template.posts_top.events({
|
|
'click button.more': function() {
|
|
Session.set('current_page', Session.get("current_page") + 1);
|
|
}
|
|
});
|
|
|