Fixed: Switching tabs in Activity and Wanted no longer add to navigation history, just like Settings, preventing a redirect loop when using the browser back navigation.

pull/4/head
Taloth Saldono 10 years ago
parent 18f0e3d536
commit 17ac82385a

@ -49,7 +49,7 @@ define(
},
_navigate: function (route) {
Backbone.history.navigate(route);
Backbone.history.navigate(route, { trigger: false, replace: true });
},
_showHistory: function (e) {

@ -43,7 +43,7 @@ define(
},
_navigate: function (route) {
Backbone.history.navigate(route);
Backbone.history.navigate(route, { trigger: false, replace: true });
},
_showMissing: function (e) {

Loading…
Cancel
Save