Fix bug # 11626: get context menus in the bookmarks window working again. Approval: chofmann. Review: Hyatt

This commit is contained in:
rjc%netscape.com 1999-08-12 08:30:02 +00:00
Родитель 21978c2e4a
Коммит c73c7adf6a
2 изменённых файлов: 4 добавлений и 4 удалений

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

@ -447,8 +447,8 @@ function fillContextMenu(name)
dump("Command #" + cmdIndex + ": id='" + cmdResource.Value + "' name='" + cmdName + "'\n\n");
var menuItem = document.createElement("menuitem");
menuItem.setAttribute("name", cmdName);
menuItem.setAttribute("onclick", "return doContextCmd('" + cmdResource.Value + "');");
menuItem.setAttribute("value", cmdName);
menuItem.setAttribute("onaction", "return doContextCmd('" + cmdResource.Value + "');");
menuNode.appendChild(menuItem);
}

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

@ -447,8 +447,8 @@ function fillContextMenu(name)
dump("Command #" + cmdIndex + ": id='" + cmdResource.Value + "' name='" + cmdName + "'\n\n");
var menuItem = document.createElement("menuitem");
menuItem.setAttribute("name", cmdName);
menuItem.setAttribute("onclick", "return doContextCmd('" + cmdResource.Value + "');");
menuItem.setAttribute("value", cmdName);
menuItem.setAttribute("onaction", "return doContextCmd('" + cmdResource.Value + "');");
menuNode.appendChild(menuItem);
}