mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
39 lines
1.1 KiB
JavaScript
39 lines
1.1 KiB
JavaScript
var BookmarkPopup = {
|
|
get box() {
|
|
delete this.box;
|
|
this.box = document.getElementById("bookmark-popup");
|
|
|
|
let [tabsSidebar, controlsSidebar] = [Elements.tabs.getBoundingClientRect(), Elements.controls.getBoundingClientRect()];
|
|
this.box.setAttribute(tabsSidebar.left < controlsSidebar.left ? "right" : "left", controlsSidebar.width - this.box.offset);
|
|
this.box.top = BrowserUI.starButton.getBoundingClientRect().top - this.box.offset;
|
|
|
|
// Hide the popup if there is any new page loading
|
|
let self = this;
|
|
messageManager.addMessageListener("pagehide", function(aMessage) {
|
|
self.hide();
|
|
});
|
|
|
|
return this.box;
|
|
},
|
|
|
|
hide : function hide() {
|
|
this.box.hidden = true;
|
|
BrowserUI.popPopup(this);
|
|
},
|
|
|
|
show : function show() {
|
|
this.box.hidden = false;
|
|
this.box.anchorTo(BrowserUI.starButton);
|
|
|
|
// include starButton here, so that click-to-dismiss works as expected
|
|
BrowserUI.pushPopup(this, [this.box, BrowserUI.starButton]);
|
|
},
|
|
|
|
toggle : function toggle() {
|
|
if (this.box.hidden)
|
|
this.show();
|
|
else
|
|
this.hide();
|
|
}
|
|
};
|