MediaWiki talk:Common.js

From SmashWiki, the Super Smash Bros. wiki
Jump to navigationJump to search

Countdown fix?[edit]

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)
It should be fixed now; I had no idea I had put the timer in there before. I also didn't know Splarka had 0.0.3 done; I've put it in now.--Richard 18:32, 3 March 2008 (UTC)

ajaxRC fix[edit]

the second h1 tag no longer exist in the monaco skin, can an admin replace the following lines from the code

if (skin == "monaco") {
s = 1;
} else {
s = 0;
}

with this

if (skin == "monaco") {
s = 0; 
// was 1, the monaco skin used to have the RC title
// as the 2nd h1 tag the in the DOM tree, but not anymore
} else {
s = 0;
}

Logan · (Talk · Contributions) 04:12, 10 June 2008 (UTC)

How fixy is it, and have you tested it in monobook? --Sky (t · c · w) 04:34, 10 June 2008 (UTC)
Eep, never mind, totally didn't realize skin had to be monaco. hah. Done. --Sky (t · c · w) 04:36, 10 June 2008 (UTC)