Content deleted Content added
No edit summary |
No edit summary |
||
Line 5:
*/
// <nowiki>
$(function()
{
Line 20 ⟶ 21:
$(".mw-contributions-list").children().each(function()
{
$(this).children().first().text(
});
break;
Line 29 ⟶ 30:
$("ul").children().each(function()
{
$(this).html(
});
break;
case "Listusers":
$("ul").children().each(function()
{
$(this).html
});
break;
Line 56 ⟶ 51:
$("td > a").each(function()
{
$(this).html
});
break;
Line 76 ⟶ 71:
if($(this).attr("class") == "mw-changeslist-date")
{
$(this).text(
}
});
Line 85 ⟶ 80:
if(document.title.indexOf("Difference between revisions") > -1)
{
$("#mw-diff-ntitle1 > strong > a").html(
$("#mw-diff-otitle1 > strong > a").html(
$(".diff-currentversion-title").text(
}
Line 93 ⟶ 88:
if($("div").hasClass("mw-revision"))
{
$("#mw-revision-date").html(
}
// Modify user signatures.
$("#mw-content-text").html($("#mw-content-text").html().replace(/(<\/a>\)
break;
Line 114 ⟶ 109:
$(".mw-warning-with-logexcerpt.mw-content-ltr > ul").children().each(function()
{
$(this).html(
});
}
Line 121 ⟶ 116:
if($("#footer-info-lastmod").length)
{
$("#footer-info-lastmod").text(
}
});
/*
function partition(text)▼
* Used when it is unlikely non-times will be matched.
*/
{
return html.replace(/(\d\d:\d\d)/g, convert);▼
return (front + time + end);▼
}
/*
* Used when a very specific match needs to be made and
{ ▼
* only a substring of the match should be modified.
▲ return html.replace(/(\d\d:\d\d)/g, convert);
*/
function rxPartition(match, p1, p2, p3)
}
Line 160 ⟶ 158:
return (hour + time.substr(2, 5) + " AM");
}
// </nokiki>
|