зеркало из https://github.com/mozilla/gecko-dev.git
64 строки
1.9 KiB
JavaScript
64 строки
1.9 KiB
JavaScript
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
var BookmarkPopup = {
|
|
get box() {
|
|
delete this.box;
|
|
this.box = document.getElementById("bookmark-popup");
|
|
|
|
// 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() {
|
|
// Set the box position.
|
|
let button = document.getElementById("tool-star");
|
|
let anchorPosition = "";
|
|
if (getComputedStyle(button).visibility == "visible") {
|
|
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 = button.getBoundingClientRect().top - this.box.offset;
|
|
} else {
|
|
button = document.getElementById("tool-star2");
|
|
anchorPosition = "after_start";
|
|
}
|
|
|
|
this.box.hidden = false;
|
|
this.box.anchorTo(button, anchorPosition);
|
|
|
|
// include the star button here, so that click-to-dismiss works as expected
|
|
BrowserUI.pushPopup(this, [this.box, button]);
|
|
},
|
|
|
|
toggle : function toggle() {
|
|
if (this.box.hidden)
|
|
this.show();
|
|
else
|
|
this.hide();
|
|
},
|
|
|
|
addToHome: function addToHome() {
|
|
this.hide();
|
|
|
|
let browser = getBrowser();
|
|
let itemId = PlacesUtils.getMostRecentBookmarkForURI(browser.currentURI);
|
|
let title = "";
|
|
if (itemId == -1)
|
|
title = browser.contentTitle;
|
|
else
|
|
title = PlacesUtils.bookmarks.getItemTitle(itemId);
|
|
|
|
Util.createShortcut(title, browser.currentURI.spec, browser.mIconURL, "bookmark");
|
|
}
|
|
};
|