Merge branch 'ref/design' of https://github.com/bitpay/bitpay-wallet into feature/external_link_open_system_browser
# Conflicts: # www/views/tab-settings.html
This commit is contained in:
commit
794e0a304e
78 changed files with 1066 additions and 678 deletions
|
|
@ -41,7 +41,7 @@ angular.module('copayApp.services').factory('platformInfo', function($window) {
|
|||
|
||||
ret.hasClick = false;
|
||||
|
||||
if($window.sessionStorage.getItem('hasClick')) {
|
||||
if ($window.sessionStorage.getItem('hasClick')) {
|
||||
ret.hasClick = true;
|
||||
}
|
||||
|
||||
|
|
|
|||
28
src/js/services/startupService.js
Normal file
28
src/js/services/startupService.js
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
'use strict';
|
||||
|
||||
angular.module('copayApp.services').service('startupService', function($log, $timeout) {
|
||||
|
||||
var splashscreenVisible = true;
|
||||
var statusBarVisible = false;
|
||||
|
||||
function _hideSplash(){
|
||||
if(typeof navigator.splashscreen !== "undefined" && splashscreenVisible){
|
||||
$log.debug('startupService is hiding the splashscreen...');
|
||||
$timeout(function(){
|
||||
navigator.splashscreen.hide();
|
||||
}, 20);
|
||||
splashscreenVisible = false;
|
||||
}
|
||||
}
|
||||
function _showStatusBar(){
|
||||
if(typeof StatusBar !== "undefined" && !statusBarVisible){
|
||||
$log.debug('startupService is showing the StatusBar...');
|
||||
StatusBar.show();
|
||||
statusBarVisible = true;
|
||||
}
|
||||
}
|
||||
this.ready = function() {
|
||||
_showStatusBar();
|
||||
_hideSplash();
|
||||
};
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue