Created
April 18, 2016 22:01
-
-
Save renanccastro/d0f9de4e0da3052574345d68e57ae3e2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var nav = window.navigator; | |
if( this.phonegapNavigationEnabled && | |
nav && | |
nav.app && | |
nav.app.backHistory ){ | |
nav.app.backHistory(); | |
} else { | |
window.history.back(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment