Content deleted Content added
No edit summary |
No edit summary |
||
Line 95:
$(this).text(time[0] + time[1] + time[2]);
});
}
else if(mw.config.get("wgCanonicalSpecialPageName") == "Userrights")
{
$("ul").children().each(function()
{
var html = $(this).html();
var time = html.substr(1, 5);
html = html.replace(/(\d\d\:\d\d)/g, convert(time));
$(this).html(html);
})
}
}
|