This commit is contained in:
Max Lynch
2015-11-30 13:27:25 -06:00
parent 2d70c6a3d4
commit 118da948cb
21 changed files with 293 additions and 36 deletions
+4 -1
View File
@@ -16,8 +16,11 @@ export * from './plugins/toast';
// an inconsistent plugin is often the culprit.
declare var window;
let before = +new Date;
let didFireReady = false;
window.addEventListener('deviceready', function() {
document.addEventListener('deviceready', function() {
console.log('DEVICE READY FIRED AFTER', (+new Date - before), 'ms')
didFireReady = true;
})