Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- * doRedirect will redirect if a did you mean box is found
- * Taken from https://en.wiktionary.org/w/index.php?title=MediaWiki:Common.js&oldid=17219894
- * Altered by [[m:User:Hoo man]]
- **/
- $(document).ready(function() {
- if( window.location.href.indexOf('rdfrom=') === -1 ) {
- var target = jQuery('#did-you-mean a').html(),
- pagetitle = jQuery('h1').first().text().trim();
- if( target && target != pagetitle
- && !window.location.href.match(/[&\?]redirect=no|[&\?]action=(?!view)/)
- && wgArticleId === 0
- && !/Redirected from/.test(jQuery('#contentSub').html())) {
- document.location = mw.util.wikiGetlink( target ) + '?rdfrom=' + mw.util.wikiUrlencode( pagetitle );
- }
- }
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement