2016-06-16 14:57:30 -03:00
|
|
|
'use strict';
|
|
|
|
|
|
2016-10-11 10:19:05 -03:00
|
|
|
angular.module('copayApp.controllers').controller('txStatusController', function($scope, $timeout) {
|
2016-06-16 14:57:30 -03:00
|
|
|
|
|
|
|
|
if ($scope.cb) $timeout($scope.cb, 100);
|
2016-09-28 17:51:45 -03:00
|
|
|
|
2016-06-16 14:57:30 -03:00
|
|
|
$scope.cancel = function() {
|
|
|
|
|
$scope.txStatusModal.hide();
|
|
|
|
|
};
|
2016-09-21 15:13:22 -03:00
|
|
|
|
2016-06-16 14:57:30 -03:00
|
|
|
});
|