Added spinner to all buttons

This commit is contained in:
Gustavo Cortez 2014-04-24 22:43:19 -03:00
commit 872cfaba68
8 changed files with 52 additions and 18 deletions

View file

@ -5,6 +5,7 @@ angular.module('copay.transactions').controller('TransactionsController',
var bitcore = require('bitcore');
$scope.title = 'Transactions';
$scope.loading = false;
var _updateTxs = function() {
var w =$rootScope.wallet;
if (!w) return;
@ -34,9 +35,11 @@ angular.module('copay.transactions').controller('TransactionsController',
$scope.txs = txs;
w.removeListener('txProposalsUpdated',_updateTxs)
w.once('txProposalsUpdated',_updateTxs);
$scope.loading = false;
};
$scope.send = function (ntxid) {
$scope.loading = true;
var w = $rootScope.wallet;
w.sendTx(ntxid, function(txid) {
console.log('[transactions.js.68:txid:] SENTTX CALLBACK',txid); //TODO
@ -50,6 +53,7 @@ angular.module('copay.transactions').controller('TransactionsController',
};
$scope.sign = function (ntxid) {
$scope.loading = true;
var w = $rootScope.wallet;
var ret = w.sign(ntxid);
@ -84,6 +88,7 @@ angular.module('copay.transactions').controller('TransactionsController',
};
$scope.reject = function (ntxid) {
$scope.loading = true;
var w = $rootScope.wallet;
w.reject(ntxid);
$rootScope.flashMessage = {type:'warning', message: 'Transaction rejected by you'};