Skip to content

Commit

Permalink
removed last Object.watch call, set version to 1.7.0.5.beta2
Browse files Browse the repository at this point in the history
  • Loading branch information
tzr7 committed Nov 1, 2019
1 parent 09c9f8c commit 760e701
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion chrome/content/interfaces/downloads.js
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,7 @@ function view_details() {
// detail_win.addEventListener("load", rightOn, false);
}
else {
detail_win.reqObj = req_objs[shit];
detail_win.setReqObj(req_objs[shit]);
// rightOn();
detail_win.focus();
}
Expand Down
5 changes: 4 additions & 1 deletion chrome/content/interfaces/req_details.js
Original file line number Diff line number Diff line change
Expand Up @@ -310,4 +310,7 @@ detailsView.prototype = {
performActionOnCell: function(action, index, column) { }
}

this.watch('reqObj', (a, b, c) => {setTimeout(rightOn, 0); return c});
setReqObj = function (reqObj) {
this.reqObj = reqObj;
setTimeout(rightOn, 0);
};
2 changes: 1 addition & 1 deletion install.rdf
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<RDF:Description RDF:about="urn:mozilla:install-manifest"
em:id="{E4091D66-127C-11DB-903A-DE80D2EFDFE8}"
em:name="ImageHost Grabber"
em:version="1.7.0.5.DEV"
em:version="1.7.0.5.beta2"
em:creator="Cybormatt"
em:description="Downloads images hosted on most of the popular image hosts."
em:homepageURL="https://imagehostgrabber.com/"
Expand Down

0 comments on commit 760e701

Please sign in to comment.