Don't do javascript on browsers older than 4.06; it seems not to be working.

This commit is contained in:
terry%mozilla.org 1999-05-13 02:45:20 +00:00
Родитель cc913f3c67
Коммит 47c22b1380
1 изменённых файлов: 7 добавлений и 0 удалений

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

@ -243,6 +243,13 @@ function selectProduct(f) {
// Apparently, IE4 chokes on the below, so do nothing if running that.
var agt=navigator.userAgent.toLowerCase();
if ((agt.indexOf("msie") != -1)) return;
// Netscape 4.04 and 4.05 also choke with an "undefined"
// error. if someone can figure out how to "define" the
// whatever, we'll remove this hack. in the mean time, we'll
// assume that v4.00-4.03 also die, so we'll disable the neat
// javascript stuff for Netscape 4.05 and earlier.
var agtver = parseFloat(navigator.appVersion);
if (agtver <= 4.05 ) return;
var cnt = 0;
var i;