Wallet/src/js/controllers/modals/txStatus.js
Matias Alejo Garcia a95f37ce54
fix txStatus modal
2016-09-02 10:35:57 -03:00

10 lines
234 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();
};
});