You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Navigate to the task detail page and then reload the page. The back button no longer goes back to the task list because the referrer is the same as the current path.
Modify to not set referrer if the path doesn't change or possibly hard code the link in the view to go back to the task list.
public/js/app.js
// Store the current page for back navigation
myTasks.run(function($rootScope, $location) {
$rootScope.$on("$locationChangeStart", function(event, next, current) {
$rootScope.referrer = current;
});
});
The text was updated successfully, but these errors were encountered:
Navigate to the task detail page and then reload the page. The back button no longer goes back to the task list because the referrer is the same as the current path.
Modify to not set referrer if the path doesn't change or possibly hard code the link in the view to go back to the task list.
public/js/app.js
The text was updated successfully, but these errors were encountered: