Starting splash
This commit is contained in:
parent
74c6e2e3b7
commit
d6d0b75efe
4 changed files with 31 additions and 6 deletions
|
|
@ -1,3 +0,0 @@
|
||||||
<h1> Starting... </h1>
|
|
||||||
|
|
||||||
Splash screen me...
|
|
||||||
|
|
@ -106,7 +106,11 @@ angular.module('copayApp').config(function(historicLogProvider, $provide, $logPr
|
||||||
|
|
||||||
.state('starting', {
|
.state('starting', {
|
||||||
url: '/starting',
|
url: '/starting',
|
||||||
templateUrl: 'views/starting.html'
|
template: '<ion-view id="starting"><ion-content>{{starting}}</ion-content></ion-view>',
|
||||||
|
controller: function($scope, $log, gettextCatalog) {
|
||||||
|
$log.info('Starting...');
|
||||||
|
$scope.starting = gettextCatalog.getString('Starting...');
|
||||||
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
angular.module('copayApp.services')
|
angular.module('copayApp.services')
|
||||||
.factory('logHeader', function($log, platformInfo) {
|
.factory('logHeader', function($window, $log, platformInfo) {
|
||||||
$log.info('Starting Copay v' + window.version + ' #' + window.commitHash);
|
$log.info($window.appConfig.nameCase + ' v' + window.version + ' #' + window.commitHash);
|
||||||
$log.info('Client: '+ JSON.stringify(platformInfo) );
|
$log.info('Client: '+ JSON.stringify(platformInfo) );
|
||||||
return {};
|
return {};
|
||||||
});
|
});
|
||||||
|
|
|
||||||
|
|
@ -955,6 +955,30 @@ input[type=number] {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Starting */
|
||||||
|
|
||||||
|
#starting {
|
||||||
|
background: rgba(30, 49, 134, 1);
|
||||||
|
background: -moz-linear-gradient(top, rgba(30, 49, 134, 1) 0%, rgba(17, 27, 73, 1) 100%);
|
||||||
|
background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(30, 49, 134, 1)), color-stop(100%, rgba(17, 27, 73, 1)));
|
||||||
|
background: -webkit-linear-gradient(top, rgba(30, 49, 134, 1) 0%, rgba(17, 27, 73, 1) 100%);
|
||||||
|
background: -o-linear-gradient(top, rgba(30, 49, 134, 1) 0%, rgba(17, 27, 73, 1) 100%);
|
||||||
|
background: -ms-linear-gradient(top, rgba(30, 49, 134, 1) 0%, rgba(17, 27, 73, 1) 100%);
|
||||||
|
background: linear-gradient(to bottom, rgba(30, 49, 134, 1) 0%, rgba(17, 27, 73, 1) 100%);
|
||||||
|
color: #fff;
|
||||||
|
height: 100%;
|
||||||
|
.scroll-content {
|
||||||
|
display: table !important;
|
||||||
|
width: 100% !important;
|
||||||
|
height: 100% !important;
|
||||||
|
}
|
||||||
|
.scroll {
|
||||||
|
display: table-cell;
|
||||||
|
vertical-align: middle;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@import "ionic";
|
@import "ionic";
|
||||||
@import "common";
|
@import "common";
|
||||||
@import "forms";
|
@import "forms";
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue