Created
January 7, 2013 19:20
-
-
Save shazron/4477622 to your computer and use it in GitHub Desktop.
OnDeviceReady
This file contains hidden or 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
| document.addEventListener("deviceready", onDeviceReady, false); | |
| // Cordova is ready to be used! | |
| // | |
| function onDeviceReady() { | |
| // do stuff here | |
| var exec = cordova.require('cordova/exec'); | |
| exec.setJsToNativeBridgeMode(exec.jsToNativeModes.IFRAME_NAV); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment