User:Nardog/MoveHistoryClassic.js

Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
mw.config.get('wgAction') === 'history' && document.querySelector('#p-tb') &&
mw.loader.using('mediawiki.util', function moveHistory() {
	let link = mw.util.addPortletLink('p-tb', '#', 'Move history', 't-movehistory');
	link.firstElementChild.addEventListener('click', e => {
		mw.loader.load('//en.wikipedia.org/w/index.php?title=User:Nardog/MoveHistoryClassic-core.js&action=raw&ctype=text/javascript');
		link.remove();
		e.preventDefault();
	});
});