NHTorres
NHTorres

Reputation: 1538

Navigation app failed ios 9

I have an application made for iOS ionic until recently and iOS versions prior to 9 runs all excellent. But smartphones with iOS 9 up fails navigation, for example, and something that comes in ionic is the button again when I'm in a view and pressed that button, pretends to return but remains in the same view and we must make 1 or 2 more times attempt to finally prove. I thought it might have been updating ionic or operating system, testie in previous versions and also in other iphones (now I'm trying to iphone 6) and also iPads with iOS versions prior to 9 and everything works great.

The method used to return :

$ionicHistory.goBack();

Upvotes: 0

Views: 295

Answers (1)

Tony Laidig
Tony Laidig

Reputation: 1068

You have a typo.

<script scr="js/angular-ios9-uiwebview.patch.js"></script>

should be:

<script src="js/angular-ios9-uiwebview.patch.js"></script>

Also, please check that the file is present in the js/ directory

Upvotes: 1

Related Questions