mirror of
https://github.com/seigler/govobject-proposal
synced 2025-07-28 07:16:10 +00:00
adds css proposalBlock style to rest of steps, raises validation errors on step 2 while inputting txID
This commit is contained in:
parent
d5e40ae61e
commit
7f8528a14b
3 changed files with 68 additions and 55 deletions
|
@ -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);
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue