Reputation: 11
we are using Ionic framework for an app which runs on ipad device, We have recently migrated to IOS9, several things are not working, Modal dialogues box is not getting opened, it goes to login page which we have declared in otherwise. $urlRouterProvider.otherwise('login')
The same thing works in IOS8
Upvotes: 1
Views: 498
Reputation: 770
As mentioned here http://blog.ionic.io/preparing-for-ios-9/
Also, empty href links
<a href="#">
will trigger your otherwise state, so test those and remove the empty href if necessary.
Upvotes: 1