Wallet/src/js/controllers/confirmTx.js
2016-01-29 16:40:33 -03:00

13 lines
217 B
JavaScript

'use strict';
angular.module('copayApp.controllers').controller('confirmTxController', function() {
this.close = function(cb) {
return cb();
};
this.accept = function(cb) {
return cb(true);
};
});