We are using angular material tabs on our login screen, with three tabs total, login, singup and forgot password.
Is it possible to add a clickable element inside the tab content to navigate through these tabs.
Looking in inspector view the md-tab-item has
ng-click="$mdTabsCtrl.select(tab.getIndex())"
But adding that to an element inside the tab content doesn't trigger any events.
<span ng-click="$mdTabsCtrl.select(tab.getIndex())">Forgot Password</span>
The reason for this is to make it easier for people to get to the forgot password screen if they are on mobile and the tab labels are not fully visible.