Skip to content

Commit

Permalink
Show popup before the spinner on mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
cmgustavo committed Jan 22, 2016
1 parent c10151d commit be223b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/services/txSignService.js
Original file line number Diff line number Diff line change
Expand Up @@ -175,12 +175,12 @@ angular.module('copayApp.services').factory('txSignService', function($rootScope
};

root.prepareAndSignAndBroadcast = function(txp, opts, cb) {
reportSigningStatus(opts);
root.prepare(function(err) {
if (err) {
stopReport(opts);
return cb(err);
};
reportSigningStatus(opts);
root.signAndBroadcast(txp, opts, function(err, txp) {
if (err) {
stopReport(opts);
Expand Down

0 comments on commit be223b6

Please sign in to comment.