If you need help with the $ionicModal service, check out this link: http://ionicframework.com/docs/api/service/$ionicModal/
I've encountered a situation where I find myself opening more than two modals at once.
For example:
- First, I open a
loginModal
- Within that modal, the user clicks on a button "openSignUp()" which opens the
SignUpModal
But sometimes, the signup modal appears below the login modal. This means I have to close the login modal first before I can access it.
Is there a way to either: - bring the new modal to the front - or organize the order of the modals?