Closed
Bug 123903
Opened 23 years ago
Closed 22 years ago
newtek.com - JS scroller not working
Categories
(Tech Evangelism Graveyard :: English US, defect, P4)
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: thorgal, Assigned: arun)
References
()
Details
(Whiteboard: [propietary-js])
Mozilla 0.9.8 (2002020415) Linux/i-686
JavaScript scroller in "HOT NEW ITEMS" box is empty in Mozilla, while in NS4.x
it shows some ugly text moving upwards.
Repeat.: always.
Comment 1•23 years ago
|
||
The site is using version 3 of Macromedia functions that are out of date.
For example, here is their copy of MM_findObj. (They have erased the "MM_")
function findObj(n, d) { //v3.0
var p,i,x;
if(!d) d=document;
if((p=n.indexOf("?"))>0&&parent.frames.length) {
d=parent.frames[n.substring(p+1)].document;
n=n.substring(0,p);
}
if(!(x=d[n])&&d.all) x=d.all[n];
for (i=0;!x&&i<d.forms.length;i++)
x=d.forms[i][n];
for(i=0;!x&&d.layers&&i<d.layers.length;i++)
x=findObj(n,d.layers[i].document);
return x;
}
This won't work in Moizilla, because it only recognizes document.all
and document.layers, neither of which are supported in Mozilla.
The site needs to update to the latest Macromedia template.
Reassigning to Tech Evangelism -
Assignee: rogerl → aruner
Component: JavaScript Engine → US Ecommerce
Product: Browser → Tech Evangelism
QA Contact: pschwartau → bclary
Version: other → unspecified
Updated•23 years ago
|
Priority: -- → P4
Whiteboard: [propietary-js]
Updated•23 years ago
|
Summary: JS scroller not working → newtek.com - JS scroller not working
Reporter | ||
Comment 2•22 years ago
|
||
NewTek page has been redone. No more scroller problem. This bug should probably
be marked fixed.
Comment 3•22 years ago
|
||
I don't see a scroller anymore, but the menus work fine for me. They have
updated their dw scripts as well in http://www.newtek.com/includes/menu.js
fixed.
Status: NEW → RESOLVED
Closed: 22 years ago
Resolution: --- → FIXED
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
•