This commit is contained in:
rjc%netscape.com 1999-08-23 08:27:05 +00:00
Родитель 34c13e3af7
Коммит e03eb85ff6
3 изменённых файлов: 11 добавлений и 4 удалений

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

@ -17,7 +17,6 @@ function doEngineClick(node)
resultsTree.setAttribute("style", "height: 70%; width: 100%;");
contentArea.setAttribute("style", "height: 100; width: 100%;");
html = "<HTML><BODY></BODY></HTML>\n";
}
else
{
@ -49,13 +48,17 @@ function doEngineClick(node)
}
}
if (html)
if (html != "")
{
var doc = window.frames[0].document;
doc.open("text/html", "replace");
doc.writeln(html);
doc.close();
}
else
{
window.frames[0].document.location = "default.htm";
}
}

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

@ -2,6 +2,7 @@
<HEAD>
<TITLE>Smart Search</TITLE>
<BASE TARGET='_NEW'>
</HEAD>
<BODY>

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

@ -17,7 +17,6 @@ function doEngineClick(node)
resultsTree.setAttribute("style", "height: 70%; width: 100%;");
contentArea.setAttribute("style", "height: 100; width: 100%;");
html = "<HTML><BODY></BODY></HTML>\n";
}
else
{
@ -49,13 +48,17 @@ function doEngineClick(node)
}
}
if (html)
if (html != "")
{
var doc = window.frames[0].document;
doc.open("text/html", "replace");
doc.writeln(html);
doc.close();
}
else
{
window.frames[0].document.location = "default.htm";
}
}