Closed
Bug 571682
Opened 15 years ago
Closed 15 years ago
koreabaseball.com uses "::" in Javascript (window::onload, window::onresize)
Categories
(Tech Evangelism Graveyard :: Korean, defect)
Tech Evangelism Graveyard
Korean
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: jshin1987, Unassigned)
Details
1. Go to http://www.koreabaseball.com
2. Team names in the team standing table at the upper-right corner are blank (the 2nd column)
The cause:
http://www.koreabaseball.com/main/index.asp has the following:
---------------
function window::onload() {
decodeScoreBoard();
decodeTeamRank();
repositionRightBanner();
setInterval('newschange();', 5000);
pop_100529(); /* ### 올스타 투표 #### */
pop_100610(); /* ### 내가 진짜 야구마니아 당첨자 안내 #### */
pop_100611(); /* ### 감귤 #### */
}
function window::onresize() {
repositionRightBanner();
}
-----------
decodeTeamRanking() is used to fill up placeholder text nodes, but it's not called because the page uses 'window::onload()' instead of 'window.onload()'.
This is all broken in browsers other than IE. It should be broken on iPhone, too. I'm writing an email to the site maintainer.
With the popularity of iPhone soaring in Korea, the web site is more likely to be responsive than in the past (well, they'd not care if they have an iPhone app. ick...)
| Reporter | ||
Comment 1•15 years ago
|
||
It's now fixed.
Status: NEW → RESOLVED
Closed: 15 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
•