Closed
Bug 113104
Opened 23 years ago
Closed 23 years ago
adobe.com - Does not open the javascript menu
Categories
(Tech Evangelism Graveyard :: English US, defect, P1)
Tech Evangelism Graveyard
English US
Tracking
(Not tracked)
Jan
People
(Reporter: lancer, Assigned: bc)
References
()
Details
(Whiteboard: [PROPRIETARY-DOM])
in the page there s menu, opens with a mouse click. Is the little orange bar at
the midle left of the page, it say: "expert center".
Comment 1•23 years ago
|
||
From http://media.studio.adobe.com/scripts/studio_utils.js:
isIE = (navigator.appName.indexOf("Explorer") > -1);
isNS = (navigator.appName.indexOf("Netscape") > -1);
function showLayer() {
var n=showLayer.arguments.length;
for (var i=0; i<n; i++) {
var lyr = getLayer(showLayer.arguments[i]);
if(lyr) {
if(isIE) {lyr.visibility = "visible";}
if(isNS) lyr.visibility = "show";
}
}
}
function getLayer(name) {
//alert(name);
if(typeof name != "string") return name;
if(isIE) { return document.all[name].style; } // NOTE: adding a test here to see if
document.all[name] is defined causes HUGE slowdown...
if(isNS) { return eval("document." + name); }
return null
}
This code sucks and should be fixed. Evang. See also bug 94917
Assignee: asa → bclary
Status: UNCONFIRMED → NEW
Component: Browser-General → English: US
Ever confirmed: true
OS: Windows 98 → All
Product: Browser → Tech Evangelism
QA Contact: doronr → zach
Hardware: PC → All
Version: other → unspecified
Assignee | ||
Updated•23 years ago
|
Priority: -- → P1
Summary: Does not open the javascript menu → adobe.com - Does not open the javascript menu
Whiteboard: [PROPRIETARY-DOM]
Comment 3•23 years ago
|
||
*** This bug has been marked as a duplicate of 94917 ***
Status: ASSIGNED → 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
•