Wallet/src/js/controllers/preferencesAdvancedController.js

13 lines
343 B
JavaScript
Raw Normal View History

'use strict';
angular.module('copayApp.controllers').controller('preferencesAdvancedController', function($scope, $timeout, $stateParams, profileService) {
var wallet = profileService.getWallet($stateParams.walletId);
$scope.network = wallet.network;
2017-01-18 13:15:46 -03:00
$scope.wallet = wallet;
$timeout(function() {
$scope.$apply();
}, 1);
});