Closed bswcube closed 10 years ago
Which version of Meteor are you using?
Which version of iron:router
AND mrt:iron-router-progress
are you seeing this error with?
When you remove IRP does IR upgrade, and when you add IRP back, does IR downgrade?
Try the latest IR and IRP packages. Closing this issue for now. If you still have issues, create a reproduction, and re-open the issue. :)
I am developing a meteor.js application, and I am having a strange error. I wrote my code here:
http://stackoverflow.com/questions/25749931/iron-router-error-in-meteor-js-project-old-templates-data-get-re-called
and as you can see I have a template called groupsmain which shows list of different groups, and when I click one of them, I am going to groupdetail template. Everything is working fine, but only when I go groupsmain template from inside group detail template by clicking navbar, although everything looks good on the page, I am getting the error below in console. Now I am in groupsmain template, not groupdetail template, but it is giving error about the properties which sub-template of groupdetail template is using.
Also, when I am in groupdetail template, if I write the url localhost:3000/groupsmain to the browser and click enter, it does not give error. It is only giving error if I click this link on navbar which is ....{{pathFor 'groupsmain'}}">Groups...
And it looks like when I removed iron-router-progress from the project, It looks like the error is solved. I really want to use iron-router-progress in my project though. What should I do about it?