Does anyone have a technique for kicking off the app after the phonegap deviceready event? I'm using stealjs, canjs and phonegap.
Using AngularJS I'd do something like this.
Using AngularJS I'd do something like this.
document.addEventListener('deviceready', function onDeviceReady() {angular.bootstrap(document, ['YourAppName']);}, false);var YourAppName = angular.module('YourAppName', []);