fix timeout

This commit is contained in:
Gustavo Maximiliano Cortez 2014-12-12 19:28:33 -03:00
parent 5a252f8ae8
commit 9727c70887
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
'use strict';
angular.module('copayApp.controllers').controller('ImportController',
function($scope, $rootScope, $location, identityService, notification, isMobile, Compatibility) {
function($scope, $rootScope, $location, $timeout, identityService, notification, isMobile, Compatibility) {
$rootScope.title = 'Import wallet';
$scope.importStatus = 'Importing wallet - Reading backup...';

View File

@ -1,7 +1,7 @@
'use strict';
angular.module('copayApp.controllers').controller('ImportProfileController',
function($scope, $rootScope, $location, notification, isMobile, identityService) {
function($scope, $rootScope, $location, $timeout, notification, isMobile, identityService) {
$scope.title = 'Import a backup';
$scope.importStatus = 'Importing wallet - Reading backup...';
$scope.hideAdv = true;