From 3092d0b3a435a82d930b0a8a65675815a2c33327 Mon Sep 17 00:00:00 2001 From: Gustavo Maximiliano Cortez Date: Tue, 12 May 2015 12:51:32 -0300 Subject: [PATCH] Fix splash --- public/views/splash/1.html | 2 +- src/js/routes.js | 5 ----- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/public/views/splash/1.html b/public/views/splash/1.html index 85bc6c244..dcaf084c7 100644 --- a/public/views/splash/1.html +++ b/public/views/splash/1.html @@ -1,4 +1,4 @@ -
+
diff --git a/src/js/routes.js b/src/js/routes.js index d52bab836..efb92b28a 100644 --- a/src/js/routes.js +++ b/src/js/routes.js @@ -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); } }); };