2014-03-14 17:38:27 -03:00
|
|
|
'use strict';
|
2014-04-30 12:25:33 -03:00
|
|
|
|
2014-03-14 17:38:27 -03:00
|
|
|
angular.element(document).ready(function() {
|
2014-11-25 15:09:36 -03:00
|
|
|
var startAngular = function () {
|
|
|
|
|
angular.bootstrap(document, ['copayApp']);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
if (window.cordova !== undefined) {
|
|
|
|
|
document.addEventListener('deviceready', function() {
|
|
|
|
|
setTimeout(function(){ navigator.splashscreen.hide(); }, 2000);
|
|
|
|
|
|
|
|
|
|
startAngular();
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
startAngular();
|
|
|
|
|
}
|
|
|
|
|
|
2014-03-14 17:38:27 -03:00
|
|
|
});
|