diff options
author | terry%mozilla.org <> | 1999-05-13 09:45:20 +0000 |
---|---|---|
committer | terry%mozilla.org <> | 1999-05-13 09:45:20 +0000 |
commit | 75b01b2e84ac2271ba5fe23291655c5f748eb42d (patch) | |
tree | 6432f492810a552a811ee459a6b56f16a6728068 /query.cgi | |
parent | 95b43e67166b0d87be6d2386492caf44e55cd4c8 (diff) | |
download | bugs-75b01b2e84ac2271ba5fe23291655c5f748eb42d.tar bugs-75b01b2e84ac2271ba5fe23291655c5f748eb42d.tar.gz bugs-75b01b2e84ac2271ba5fe23291655c5f748eb42d.tar.bz2 bugs-75b01b2e84ac2271ba5fe23291655c5f748eb42d.tar.xz bugs-75b01b2e84ac2271ba5fe23291655c5f748eb42d.zip |
Don't do javascript on browsers older than 4.06; it seems not to be working.
Diffstat (limited to 'query.cgi')
-rwxr-xr-x | query.cgi | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -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; |