Last part of fix for 6776. Check for containers properly when openening bookmarks. Previously approved by chofmann. Fix by rjc.

This commit is contained in:
slamm%netscape.com 1999-05-24 23:25:52 +00:00
Родитель cf354616e6
Коммит 450c796d91
1 изменённых файлов: 2 добавлений и 3 удалений

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

@ -222,8 +222,7 @@
function OpenBookmarkURL(node)
{
if (node.getAttribute('type') !=
"http://home.netscape.com/NC-rdf#Bookmark") {
if (node.getAttribute('container') == "true") {
return false;
}
url = node.getAttribute('id');
@ -234,7 +233,7 @@
}
window.frames[0].frames[1].location.href = url;
RefreshUrlbar();
RefreshUrlbar();
}
function BrowserNewWindow()