I have app with sidebar menu. I am on second page and I am calling controller function which redirect me to first page using:
$state.go(\'app.home\');
As long as you have
included in
you will see a back button by default on any view using app
.
Removing
will remove the back button from all of the views using app
. You can selectively disable it based on what template your viewing by setting hide-back-button="true"
on the
of that template.
So, in your case, removing
from menu.html
will hide the back button on all views using app
.