Let’s say I have an app with 3 tabs, similar to the example tabbed app. I’d want every tab to go more than one level deep, in some cases reaching the same view from different tabs (e.g. a user profile view that could be reached from tab 1, 2 or 3).
To illustrate:
* - TAB1 -> detailView -> userView
* - TAB2 -> detailView -> moreDetailView -> userList -> userView
* - TAB3 -> otherView -> userView
How do I explain this to $stateProvider
?