Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
889ac60b
Commit
889ac60b
authored
Mar 25, 1999
by
terry%netscape.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't try to run our javascript if running on IE4.
parent
19ca3aa8
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
2 deletions
+9
-2
query.cgi
query.cgi
+9
-2
No files found.
query.cgi
View file @
889ac60b
...
@@ -225,11 +225,16 @@ for $p (@::legal_product) {
...
@@ -225,11 +225,16 @@ for $p (@::legal_product) {
}
}
$i
=
0
;
$i
=
0
;
$jscript
.=
"
$jscript
.=
q{
// Only display versions/components valid for selected product(s)
// Only display versions/components valid for selected product(s)
function selectProduct(f) {
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) &&
(parseInt(navigator.appVersion) == 4)) return;
var cnt = 0;
var cnt = 0;
var i;
var i;
var j;
var j;
...
@@ -309,7 +314,9 @@ function selectProduct(f) {
...
@@ -309,7 +314,9 @@ function selectProduct(f) {
}
}
// -->
// -->
</script>\n"
;
</script>
}
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment