Closed
Bug 101493
Opened 23 years ago
Closed 23 years ago
no action when moving over links
Categories
(Tech Evangelism Graveyard :: English US, defect)
Tracking
(Not tracked)
Oct
People
(Reporter: cybot, Assigned: joki)
References
()
Details
when moving over the gray links (downloads, product info, inspiration, ...,)
nothing happens, but in IE there are doing some mouseover actions!
Comment 1•23 years ago
|
||
I tried this in ns6.1 - dont work. it looks like it has some really extensive
Javascript to do the correct mouseover work. By the look of the functions within
the script they are doing userAgent Checking, maybe a Evangalism browser sniffer
problem first before a bug in the event handling code.
------- here is snippet of code from their page relating to browser sniffing
---------
CSAg = window.navigator.userAgent; CSBVers =
parseInt(CSAg.charAt(CSAg.indexOf("/")+1),10);
function IsIE() { return CSAg.indexOf("MSIE") > 0;}
function CSIEStyl(s) { return document.all.tags("div")[s].style; }
function CSNSStyl(s) { return CSFindElement(s,0); }
function CSFindElement(n,ly) { if (CSBVers < 4) return document[n];
var curDoc = ly ? ly.document : document; var elem = curDoc[n];
if (!elem) { for (var i=0;i<curDoc.layers.length;i++) {
elem = CSFindElement(n,curDoc.layers[i]); if (elem) return elem; }}
return elem;
}
---------------------------
Comment 2•23 years ago
|
||
here is what javascript console has the following error on it.
Error: curDoc.layers has no properties
Source File: http://www.adobe.com/products/indesign/main.html#
Line: 125
Comment 3•23 years ago
|
||
JavaScript uses document.all so this is an Evanglism bug.
Should be moved to Tech Evangelism unless there's already an Adobe bug report
(then dupe).
Updated•23 years ago
|
Component: Event Handling → English: US
Product: Browser → Tech Evangelism
Summary: ne action when moving over links → no action when moving over links
Target Milestone: --- → mozilla0.9.5
Version: other → unspecified
Comment 4•23 years ago
|
||
*** This bug has been marked as a duplicate of 63393 ***
Status: UNCONFIRMED → RESOLVED
Closed: 23 years ago
Resolution: --- → DUPLICATE
Updated•10 years ago
|
Product: Tech Evangelism → Tech Evangelism Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•