User:Infinityboy7/ShowRevisionID.js: Difference between revisions

From Test Wiki
Jump to navigation Jump to search
+ created
Tags: Mobile edit Mobile web edit
 
m Infinityboy7 moved page User:Aviram7/ShowRevisionID.js to User:Infinityboy7/ShowRevisionID.js without leaving a redirect
 
(No difference)

Latest revision as of 05:42, 1 June 2024

/*** 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')));
		}
	}
});