R
@asialgearoid Thanks for the reply.
After much trial and error, I finally solved the problem:
myNavigator.pushPage('home.html', { animation: 'none' }).then(function() {
myNavigator.pushPage("user.html",{ animation: 'none', data: { user:... }}).then(function() {
... load user details ...
});
});
It’s ugly but it works. The promise is needed or only home.html will appear.
I think there is a bug in Ons-navigator. Defining a “page” then pushing a page in the initialization should work. Imho, of course.