зеркало из https://github.com/mozilla/gecko-dev.git
Fix some bugs in the history context menu.
This commit is contained in:
Родитель
b723d4949e
Коммит
429e66c45d
|
@ -44,10 +44,8 @@ var gGlobalHistory;
|
|||
var gDeleteByHostname;
|
||||
var gDeleteByDomain;
|
||||
var gHistoryBundle;
|
||||
var gHistoryStatus;
|
||||
var gSearchBox;
|
||||
var gHistoryGrouping = "";
|
||||
var gWindowManager = null;
|
||||
|
||||
function HistoryCommonInit()
|
||||
{
|
||||
|
@ -90,12 +88,6 @@ function historyOnSelect()
|
|||
if (match && match.length>1)
|
||||
gLastHostname = match[3];
|
||||
|
||||
if (gHistoryStatus)
|
||||
gHistoryStatus.label = url;
|
||||
}
|
||||
else {
|
||||
if (gHistoryStatus)
|
||||
gHistoryStatus.label = "";
|
||||
}
|
||||
|
||||
if (gLastHostname) {
|
||||
|
@ -339,6 +331,7 @@ function updateItems()
|
|||
var currentIndex = gHistoryTree.currentIndex;
|
||||
if (isContainer(gHistoryTree, currentIndex)) {
|
||||
openItem.setAttribute("hidden", "true");
|
||||
openItemInNewWindow.setAttribute("hidden", "true");
|
||||
openItem.removeAttribute("default");
|
||||
collapseExpandItem.removeAttribute("hidden");
|
||||
collapseExpandItem.setAttribute("default", "true");
|
||||
|
@ -351,23 +344,14 @@ function updateItems()
|
|||
collapseExpandItem.setAttribute("label", gHistoryBundle.getString("expandLabel"));
|
||||
return true;
|
||||
}
|
||||
else {
|
||||
collapseExpandItem.setAttribute("hidden", "true");
|
||||
bookmarkItem.removeAttribute("hidden");
|
||||
copyLocationItem.removeAttribute("hidden");
|
||||
sep1.removeAttribute("hidden");
|
||||
if (!gWindowManager) {
|
||||
gWindowManager = Components.classes['@mozilla.org/appshell/window-mediator;1'].getService();
|
||||
gWindowManager = gWindowManager.QueryInterface( Components.interfaces.nsIWindowMediator);
|
||||
}
|
||||
var topWindowOfType = gWindowManager.getMostRecentWindow("navigator:browser");
|
||||
if (!topWindowOfType) {
|
||||
openItem.setAttribute("hidden", "true");
|
||||
openItem.removeAttribute("default");
|
||||
openItemInNewWindow.setAttribute("default", "true");
|
||||
}
|
||||
else {
|
||||
openItem.removeAttribute("hidden");
|
||||
if (!openItem.getAttribute("default"))
|
||||
openItemInNewWindow.removeAttribute("hidden");
|
||||
if (!openItem.hasAttribute("default"))
|
||||
openItem.setAttribute("default", "true");
|
||||
openItemInNewWindow.removeAttribute("default");
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче