mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00
23 lines
No EOL
308 B
JavaScript
23 lines
No EOL
308 B
JavaScript
Meteor.startup(function () {
|
|
|
|
FastRender.onAllRoutes(function(path) {
|
|
|
|
var fr = this;
|
|
|
|
Telescope.subscriptions.forEach(function (sub) {
|
|
|
|
if (typeof sub === 'object'){
|
|
|
|
fr.subscribe(sub.subName, sub.subArguments);
|
|
|
|
}else{
|
|
|
|
fr.subscribe(sub);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}); |