User:Bhairava7/ShowRevisionID.js: Difference between revisions

From Test Wiki
Jump to navigation Jump to search
Amos (talk | contribs)
m Tsukushi moved page User:Infinityboy7/ShowRevisionID.js to User:Kiteretsu/ShowRevisionID.js without leaving a redirect: Uncontroversial move: User renamed.
m Bhairava7 moved page User:Kiteretsu/ShowRevisionID.js to User:Bhairava7/ShowRevisionID.js without leaving a redirect
 
(No difference)

Latest revision as of 16:25, 3 January 2025

/*** Show Revision ID ***/

// Shows the revison id on history pages
// Documentation at [[en:w:User:BrandonXLF/ShowRevisionID]]
// By [[en:w:User:BrandonXLF]]

$(function() {
	if (location.search.includes('action=history') || location.href.includes('Special:Watchlist') || location.href.includes('Special:Contributions')) {
		var items = document.querySelectorAll('li[data-mw-revid]');
		for (var i = 0; i < items.length; i++) {
			items[i].getElementsByClassName('mw-changeslist-date')[0].appendChild(document.createTextNode(' | ' + items[i].getAttribute('data-mw-revid')));
		}
	}
});