|
@@ -12,7 +12,10 @@ Router.configure({
|
|
loadingTemplate: "loading",
|
|
loadingTemplate: "loading",
|
|
notFoundTemplate: "notFound",
|
|
notFoundTemplate: "notFound",
|
|
waitOn: function () {
|
|
waitOn: function () {
|
|
- return Meteor.subscribe('posts');
|
|
|
|
|
|
+ return [
|
|
|
|
+ Meteor.subscribe('posts'),
|
|
|
|
+ Meteor.subscribe('push_feed'),
|
|
|
|
+ ];
|
|
}
|
|
}
|
|
});
|
|
});
|
|
|
|
|