Closed
Bug 133515
Opened 24 years ago
Closed 22 years ago
cnn.de - dynamic stock chooser not working
Categories
(Tech Evangelism Graveyard :: German, defect, P2)
Tech Evangelism Graveyard
German
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: doronr, Unassigned)
References
()
Details
(Whiteboard: [proprietary-js])
nuff said, fix coming up
| Reporter | ||
Comment 1•24 years ago
|
||
http://www.nexgenmedia.net/evang/cnn.de/
before:
function tausche(wohin){
bild=new Image();
bild.src="/shared/ext/ov/head_"+wohin+".gif";
head_applet.src=bild.src;
bild.src="http://chart4.ntv.onvista.de/intra_kl_info_n-tv.html?ID_NOTATION="+wohin;
chart_applet.src=bild.src;
}
Uses IE specific dom to access an element via its NAME.
Fixed, cross browser version:
function tausche(wohin){
bild=new Image();
bild.src="/shared/ext/ov/head_"+wohin+".gif";
document.images["head_applet"].src=bild.src;
bild.src="http://chart4.ntv.onvista.de/intra_kl_info_n-tv.html?ID_NOTATION="+wohin;
document.images["chart_applet"].src=bild.src;
}
Tristan, can you contact them?
Comment 2•24 years ago
|
||
Setting P1. Will contact them if I can find contact details.
Priority: -- → P1
Comment 3•24 years ago
|
||
Looking for contact details. Could not fidn on site, but asking internally.
Comment 4•24 years ago
|
||
Doron: got contact details, but I need the steps to reproduce. Can you elaborate
a bit on this ? Thanks.
Status: NEW → ASSIGNED
| Reporter | ||
Comment 5•24 years ago
|
||
The right column has stock information. There are 4 tabs - Dax (selected by
default), Nm50, Dow and Nsdq. Click on any non-selected tab doesn't work in
gecko/ns4. My fix makes this work with basically all browsers.
| Reporter | ||
Comment 6•24 years ago
|
||
contacted them myself again
Severity: critical → major
Priority: P1 → P2
Hardware: PC → All
Whiteboard: [proprietary-js]
Comment 8•22 years ago
|
||
default german owner
Assignee: nitot → german
Status: ASSIGNED → NEW
QA Contact: z-caillon-obsolete2 → german
Contacted the responsible agency at www.dasburo.com and suggested the fix
mentioned in comment #1. I received the folowing response (translated into english):
-----
...
we appreciate your interest in n-tv.de / cnn.de. Our goal is, to enhance our
web-presence and to support new browser generations. Unfortunately not all
requests for enhancements and bug fixes can be implemented immediately but your
suggestions have been reported to our development department for further
investigations.
...
-----
Comment 10•22 years ago
|
||
Looks like they fixed this. :-)
Status: NEW → RESOLVED
Closed: 22 years ago
Resolution: --- → FIXED
Updated•11 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
•