Merge pull request #378 from cmgustavo/bug/html5-alert

fixes html5 alert
This commit is contained in:
Mario Colque 2014-05-15 15:29:51 -03:00
commit c460b30872
1 changed files with 2 additions and 0 deletions

View File

@ -8,6 +8,7 @@ angular.module('copay.transactions').controller('TransactionsController',
$scope.send = function (ntxid) {
$scope.loading = true;
$rootScope.txAlertCount = 0;
var w = $rootScope.wallet;
w.sendTx(ntxid, function(txid) {
console.log('[transactions.js.68:txid:] SENTTX CALLBACK',txid); //TODO
@ -65,6 +66,7 @@ angular.module('copay.transactions').controller('TransactionsController',
$scope.reject = function (ntxid) {
$scope.loading = true;
$rootScope.txAlertCount = 0;
var w = $rootScope.wallet;
w.reject(ntxid);
$rootScope.flashMessage = {type:'warning', message: 'Transaction rejected by you'};