]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Don't do javascript on browsers older than 4.06; it seems not to be working.
authorterry%mozilla.org <>
Thu, 13 May 1999 09:45:20 +0000 (09:45 +0000)
committerterry%mozilla.org <>
Thu, 13 May 1999 09:45:20 +0000 (09:45 +0000)
query.cgi

index ac62a0db58406c6c0e1e5c01b216e034700ee208..144449ae8e36e53c216893c8939443f3027ad019 100755 (executable)
--- a/query.cgi
+++ b/query.cgi
@@ -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;