Fix splash

This commit is contained in:
Gustavo Maximiliano Cortez 2015-05-12 12:51:32 -03:00
commit 3092d0b3a4
No known key found for this signature in database
GPG key ID: 15EDAD8D9F2EB1AF
2 changed files with 1 additions and 6 deletions

View file

@ -1,4 +1,4 @@
<div class="text-center splash" ng-if="!hasProfile">
<div class="text-center splash" ng-if="!index.hasProfile">
<div class="row">
<div class="medium-6 large-4 medium-centered small-centered large-centered columns">
<div class="p20">

View file

@ -71,7 +71,6 @@ angular
templateUrl: 'views/splash/1.html',
controller: function($scope, $timeout, $log, profileService, go) {
if (profileService.profile) {
$scope.hasProfile = true;
go.walletHome();
}
@ -87,10 +86,6 @@ angular
$timeout(function() {
$scope.create();
}, 3000);
} else {
$timeout(function(){
go.walletHome();
}, 100);
}
});
};