Nessun oggetto della modifica
 
Riga 1: Riga 1:
console.log('✅ Minerva.js LOADED');
/* All JavaScript here will be loaded for users of the MinervaNeue skin */
/* All JavaScript here will be loaded for users of the MinervaNeue skin */



Versione attuale delle 15:19, 12 dic 2025

console.log('✅ Minerva.js LOADED');

/* 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)', ''));
      }
    });

  });
});