Hi guys,
I’m using angular-meteor so ui-router, but for my REST API I use iron router. Everything works great the only problem is that because I suppose I don’t use iron-router on client side I get this awful splash screen :
iron:router
Organize your Meteor application.
Router.route('/', function () {
this.render('Home', {
data: function () { return Items.findOne({_id: this.params._id}); }
});
});
How can I remove it cause I get it on every single page of my app …
Thanks a lot