I have a great problem using the app on the devices (all works well in the emulator): after some time the menu starts acting weird, two tabs open at once, meaning that when you open a tab it opens another one immediately after that, etc.
Are you on the last version of Ionic ? You can check that in the www/lib/ionic/version.json file. I am on v1.1.0 “xenon-xerus”.
I have tested on iOS 9 simulator and the same issue is visible without the patch. Then after adding the patch, everything is fine. Have you added the “ngIOS9UIWebViewPatch” module in your app.js ?
And add the “ngIOS9UIWebViewPatch” module in your app.js
// Ionic Starter App
// angular.module is a global place for creating, registering and retrieving Angular modules
// 'starter' is the name of this angular module example (also set in a <body> attribute in index.html)
// the 2nd parameter is an array of 'requires'
// 'starter.controllers' is found in controllers.js
angular.module('myapp', ['ionic', 'ngIOS9UIWebViewPatch'])
.run(function($ionicPlatform, $rootScope,
.....