Wallet/src/js/controllers/modals/txStatus.js
2016-10-11 10:19:05 -03:00

11 lines
235 B
JavaScript

'use strict';
angular.module('copayApp.controllers').controller('txStatusController', function($scope, $timeout) {
if ($scope.cb) $timeout($scope.cb, 100);
$scope.cancel = function() {
$scope.txStatusModal.hide();
};
});