מדיה ויקי:Gadget-rclast.js: הבדלים בין גרסאות בדף
קפיצה לניווט
קפיצה לחיפוש
ויקיציטוט>Ladsgroup מ (Maintenance: Replacing legacy global variable (phab:T72470)) |
מ (גרסה אחת יובאה) |
(אין הבדלים)
| |
גרסה אחרונה מ־09:47, 21 בספטמבר 2025
/* מועתק מ[[w:מדיה ויקי:Gadget-rclast.js]] */
/* הוספת כיתוב "(אחרון)" לעריכות בשינויים האחרונים */
function rcLast() {
if ( mw.config.get('wgCanonicalSpecialPageName') != "Recentchanges" ) {
// לא דף השינויים האחרונים
return;
}
var bodyContent = document.getElementById('bodyContent');
var items = bodyContent.getElementsByTagName('LI');
if (!items) return;
var title, last;
var pages = [];
for ( var i = 0; i < items.length; i++ ) {
title = items[i].getElementsByTagName( "a")[0].title;
if ( title.indexOf( "מיוחד:" ) != 0 && !pages[title] ) {
// לא פעולה ביומן, ועריכה אחרונה עד כה
pages[title] = true;
last = document.createElement( "strong" );
last.appendChild( document.createTextNode( " (אחרון)" ) );
items[i].appendChild( last );
}
}
}
$( rcLast );