Complete flow of confirmation popup before send a tx
This commit is contained in:
parent
f4878513af
commit
df834c50c3
12 changed files with 203 additions and 98 deletions
13
src/js/controllers/confirmTx.js
Normal file
13
src/js/controllers/confirmTx.js
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
'use strict';
|
||||
|
||||
angular.module('copayApp.controllers').controller('confirmTxController', function() {
|
||||
|
||||
this.close = function(cb) {
|
||||
return cb();
|
||||
};
|
||||
|
||||
this.accept = function(cb) {
|
||||
return cb(true);
|
||||
};
|
||||
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue