| Contenidos de Wikipedia en español bajo licencia CC BY-SA 4.0 ⇔ Mapas de OpenStreetMap bajo licencia ODbL |
MediaWiki:Gadget-exlinks.js
De Hispanopedia
Nota: Después de publicar, quizás necesite actualizar la caché de su navegador para ver los cambios.
- Firefox/Safari: Mantenga presionada la tecla Shift mientras pulsa el botón Actualizar, o presiona Ctrl+F5 o Ctrl+R (⌘+R en Mac)
- Google Chrome: presione Ctrl+Shift+R (⌘+Shift+R en Mac)
- Edge: mantenga presionada Ctrl mientras pulsa Actualizar, o presione Ctrl+F5
/**
* Abrir enlaces externos en otra pestaña
*/
mw.hook( 'wikipage.content' ).add( function( $content ) {
// Second selector is for external links in Parsoid HTML+RDFa output (bug 65243).
$content.find( 'a.external, a[rel="mw:ExtLink"]' ).each( function () {
// // Can't use wgServer because it can be protocol relative
// Use this.href property instead of this.getAttribute( 'href' ) because the property
// is converted to a full URL (including protocol)
if ( this.href.indexOf( location.protocol + '//' + location.hostname ) !== 0 ) {
this.target = '_blank';
if ( this.rel.indexOf( 'noopener' ) < 0 ) {
this.rel += ' noopener'; // the leading space matters, rel attributes have space-separated tokens
}
if ( this.rel.indexOf( 'noreferrer' ) < 0 ) {
this.rel += ' noreferrer'; // the leading space matters, rel attributes have space-separated tokens
}
}
} );
} );