Starting splash

This commit is contained in:
Gustavo Maximiliano Cortez 2016-09-21 11:28:31 -03:00
commit d6d0b75efe
No known key found for this signature in database
GPG key ID: 15EDAD8D9F2EB1AF
4 changed files with 31 additions and 6 deletions

View file

@ -106,7 +106,11 @@ angular.module('copayApp').config(function(historicLogProvider, $provide, $logPr
.state('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...');
}
})
/*