1 881
edições
Sem resumo de edição |
Sem resumo de edição |
||
| Linha 109: | Linha 109: | ||
}); | }); | ||
}); | }); | ||
}); | |||
mw.hook('wikipage.content').add(function($content) { | |||
var isEnglish = mw.config.get('wgUserLanguage') === 'en' || mw.config.get('wgPageName').match(/\/en$/); | |||
if (isEnglish) { | |||
$content.find('#mw-content-text a').each(function() { | |||
var href = $(this).attr('href'); | |||
if (href && href.startsWith('/') && !href.includes('Special:') && !href.includes('Especial:') && !href.includes('?') && !href.endsWith('/en')) { | |||
$(this).attr('href', href + '/en'); | |||
} | |||
}); | |||
} | |||
}); | }); | ||