adds css proposalBlock style to rest of steps, raises validation errors on step 2 while inputting txID

This commit is contained in:
hunterlester 2016-12-14 13:26:33 -08:00
parent d5e40ae61e
commit 7f8528a14b
3 changed files with 68 additions and 55 deletions

View file

@ -45,7 +45,6 @@ TXListener.prototype.getTx = function(cb) {
format: "json"
}
};
console.log(opts);
this._fetch(opts, cb);
};
@ -80,7 +79,8 @@ TXListener.prototype._fetch = function(opts,cb) {
cb(null, data);
},
error: function (jqXHR, status, error) {
var err = eval("(" + jqXHR.responseText + ")");
var err = jqXHR.status;
//var err = eval("(" + jqXHR.responseText + ")");
cb(err, null);
}
});