fix conflicts
This commit is contained in:
commit
2c0b733025
24 changed files with 3745 additions and 193 deletions
|
|
@ -1,11 +1,14 @@
|
|||
'use strict';
|
||||
|
||||
angular.module('copay.backup').controller('BackupController',
|
||||
function($scope, $rootScope, $location, $window, $timeout) {
|
||||
|
||||
if (!$rootScope.wallet.id) {
|
||||
function($scope, $rootScope, $location, $window, $timeout, Socket, controllerUtils) {
|
||||
if (!$rootScope.wallet || !$rootScope.wallet.id) {
|
||||
$location.path('signin');
|
||||
}
|
||||
else {
|
||||
var socket = Socket($scope);
|
||||
socket.on('connect', controllerUtils.handleTransactionByAddress($scope));
|
||||
}
|
||||
|
||||
$scope.title = 'Backup';
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue