mv backup to more filenames

This commit is contained in:
Matias Alejo Garcia 2014-08-21 11:04:19 -04:00
parent b388c3eadf
commit 2617b76428
3 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
'use strict';
angular.module('copayApp.controllers').controller('BackupController',
angular.module('copayApp.controllers').controller('MoreController',
function($scope, $rootScope, $location, backupService, walletFactory, controllerUtils, notification) {
$scope.hideAdv=true;

View File

@ -38,7 +38,7 @@ describe("Unit: Controllers", function() {
scope = $rootScope.$new();
$rootScope.wallet = new FakeWallet(config);
ctrl = $controller('BackupController', {
ctrl = $controller('MoreController', {
$scope: scope,
$modal: {},
});