refactor: added semi-columns

This commit is contained in:
Ibrahim Hadeed
2016-03-06 15:27:26 -05:00
parent ce6adccb9a
commit c144b87e13
2 changed files with 11 additions and 11 deletions
+3 -3
View File
@@ -66,7 +66,7 @@ window['IonicNative'] = {
StatusBar: StatusBar,
Toast: Toast,
TouchID: TouchID
}
};
// To help developers using cordova, we listen for the device ready event and
// log an error if it didn't fire in a reasonable amount of time. Generally,
@@ -76,9 +76,9 @@ let before = +new Date;
let didFireReady = false;
document.addEventListener('deviceready', function() {
console.log('DEVICE READY FIRED AFTER', (+new Date - before), 'ms')
console.log('DEVICE READY FIRED AFTER', (+new Date - before), 'ms');
didFireReady = true;
})
});
setTimeout(function() {
if(!didFireReady && window.cordova) {