I'm using Framework 7 UI for a Phonegap application.
I have 3 pages(page1->page2->page3) with href from one to the next. In each page I have a top navbar with back link:
<a href="#" class="back link"> <i class="icon icon-back"></i><span>Back</span></a>
When I try to get back from page3 to page2 I have no problems. When I try to get back from page2 to page1 it works only if I didn't get from page2 to page3 earlier.
For instance, this steps will work fine:
Page1->Page2->Page3->Page2
Page1->Page2->Page1
But this will fail in getting from page2 back to page1 (the second back):
Page1->Page2->Page3->Page2->Page1
I tried to fire mainView.router.back() in the code but I get the same results.
Someone is familiar with this issue?