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