ok, if i wrap the bootstrap with a timeout it works also on iPhone >= 5s
angular.element(document).ready(function(){
window.ionic.Platform.ready(function(){
setTimeout(function(){
angular.bootstrap(document, ['appName'])
},1000);
});
});
But i don't understand why. Shouldn't all plugins already have been loaded when Platform.ready is triggered?