MediaWiki talk:Common.js: Difference between revisions

From SmashWiki, the Super Smash Bros. wiki
Jump to navigationJump to search
No edit summary
m (striking out my comment)
Line 14: Line 14:
[[User:LoganA|Logan]] 07:06, 3 March 2008 (UTC)
[[User:LoganA|Logan]] 07:06, 3 March 2008 (UTC)


:There are two copies of the countdown timer code in Common.js, the one near the bottom of the page that is overwriting the functions of the one near the top, can one of them be removed? [[User:LoganA|Logan]] 18:24, 3 March 2008 (UTC)
:<s>There are two copies of the countdown timer code in Common.js, the one near the bottom of the page that is overwriting the functions of the one near the top, can one of them be removed? [[User:LoganA|Logan]] 18:24, 3 March 2008 (UTC)</s>

Revision as of 14:27, March 3, 2008

Countdown fix?

try replacing

var then = timers[i].eventdate;

with

var then = Date.parse(timers[i].eventdate);

Logan 05:13, 3 March 2008 (UTC)

Tried it, doesn't work for me. --Charitwo 05:22, 3 March 2008 (UTC)

also replace this line:

var diff = count=Math.floor((then.getTime()-now.getTime())/1000);

with

var diff = count=Math.floor((then-now.getTime())/1000);

Logan 07:06, 3 March 2008 (UTC)

There are two copies of the countdown timer code in Common.js, the one near the bottom of the page that is overwriting the functions of the one near the top, can one of them be removed? Logan 18:24, 3 March 2008 (UTC)