-
Notifications
You must be signed in to change notification settings - Fork 123
Open
Description
Hi Kevin,
I had to comment out line 12 of NavigationController.js to get things to correctly function across the two platforms, not sure exactly what's going on, but if i went, in, out, in, out it would loose it's place.
Also we created a back function where you don't want to go home, w.close() didn't always work so our function checks the platform see:
//go back one window NavigationController
exports.NavigationController.prototype.back = function(w) {
if(Ti.Platform.osname === 'android') {
w.close();
}else{
this.navGroup.close(w);
}
};
Metadata
Metadata
Assignees
Labels
No labels