User:Guywan/Scripts/12HourFormat.js: Difference between revisions

Content deleted Content added
No edit summary
No edit summary
Line 31:
case "Log":
case "Userrights":
case "AbuseLog":
$("ul").children().each(function()
{
$(this).html(regexpReplace($(this).html(), 1, 5));
});
break;
case "Listusers":
var index, html, time;
$("ul").children().each(function()
{
html = $(this).html();
index = html.indexOf("Created on ");
time = partition(html.substring(index));
html = html.substring(0, index);
$(this).html(html + time);
});
break;
Line 109 ⟶ 123:
// Modify user signatures.
var html = $("#mw-content-text").html();
switch(mw.config.get("wgDefaultDateFormat"))