This commit is contained in:
mozilla.mano%sent.com 2007-10-13 22:13:58 +00:00
Родитель 60f1b8a67a
Коммит f182e2dac7
2 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -229,7 +229,7 @@
element.setAttribute("siteURI", siteURI.spec);
}
var popup = document.createElementNS(XULNS, "menupopup");
//popup.setAttribute("type", "places");
popup.setAttribute("type", "places");
element.appendChild(popup);
#ifndef XP_MACOSX
// No context menus on menus on Mac
@ -246,7 +246,7 @@
// get applied correctly.
if (this._needsBindingAttachment) {
const MENU_URI = "chrome://browser/content/places/menu.xml#places-menupopup";
// document.addBinding(popup, MENU_URI);
document.addBinding(popup, MENU_URI);
}
#endif
popup._containerNodesMap = this._containerNodesMap;

Просмотреть файл

@ -220,7 +220,7 @@
button.setAttribute("siteURI", siteURIString);
}
var popup = document.createElementNS(XULNS, "menupopup");
//popup.setAttribute("type", "places");
popup.setAttribute("type", "places");
// This is set here and not in the XBL constructor for the menu because
// it doesn't get initialized properly in the constructor.
#ifndef XP_MACOSX