mic_none

User:BrandonXLF/RedirectNotification.js Source: en.wikipedia.org/wiki/User:BrandonXLF/RedirectNotification.js

/*** Redirect Notification ***/

// Get notified when you are redirected
// Documentation at [[en:w:User:BrandonXLF/RedirectNotification]]
// By [[en:w:User:BrandonXLF]]

$(function() {
	var redirectedFrom = mw.config.get('wgRedirectedFrom');

	if (redirectedFrom) mw.notify($(
		'<div style="word-break:break-word;">Redirected from "<a href="' +
		mw.config.get('wgScript') +
		'?title=' + redirectedFrom + '&redirect=no' +
		'">' +
		redirectedFrom.replace(/_/g, ' ') +
		'</a>".</div>'
	));
});