Changes

From Life After BOB Wiki
no edit summary
Line 1: Line 1:  
/* Any JavaScript here will be loaded for all users on every page load. */
 
/* Any JavaScript here will be loaded for all users on every page load. */
    +
//open external links in new tab
 +
$( function () {
 +
$( '.external free' ).on( 'click', function () {
 +
var otherWindow = window.open();
 +
otherWindow.opener = null;
 +
otherWindow.location = this;
 +
return false;
 +
} );
 +
} );
    
mw.loader.using( 'mediawiki.api', function () {  
 
mw.loader.using( 'mediawiki.api', function () {