Nota: dopo aver pubblicato, potrebbe essere necessario pulire la cache del proprio browser per vedere i cambiamenti.
- Firefox / Safari: tieni premuto il tasto delle maiuscole Shift e fai clic su Ricarica, oppure premi Ctrl-F5 o Ctrl-R (⌘-R su Mac)
- Google Chrome: premi Ctrl-Shift-R (⌘-Shift-R su un Mac)
- Edge: tieni premuto il tasto Ctrl e fai clic su Aggiorna, oppure premi Ctrl-F5.
/* All JavaScript here will be loaded for users of the MinervaNeue skin */
/* =========================================================
Masticationpedia – Book Index B2 (Minerva)
Logged-in users → full chapters
Public users → abstract pages
========================================================= */
mw.loader.using(['mediawiki.util'], function () {
$(function () {
// Applica solo sulla pagina Book_index_abstract
if (mw.config.get('wgPageName') !== 'Book_index_abstract') return;
// Solo se utente loggato
if (!mw.config.get('wgUserName')) return;
console.log('✅ B2 active on Minerva (logged in)');
// Riscrive i link agli abstract verso i capitoli completi
document.querySelectorAll('#mw-content-text a').forEach(function (a) {
var href = a.getAttribute('href');
if (!href) return;
if (href.includes('_(Abstract)')) {
a.setAttribute('href', href.replace('_(Abstract)', ''));
} else if (href.includes('(Abstract)')) {
a.setAttribute('href', href.replace('(Abstract)', ''));
}
});
});
});