diff --git a/includes/skins/SkinMinerva.php b/includes/skins/SkinMinerva.php index 9f95b31..864f51c 100644 --- a/includes/skins/SkinMinerva.php +++ b/includes/skins/SkinMinerva.php @@ -1285,8 +1285,6 @@ class SkinMinerva extends SkinTemplate implements ICustomizableSkin { $vars = [ 'wgMinervaDownloadNamespaces' => $this->getConfig()->get( 'MinervaDownloadNamespaces' ), 'wgMinervaMenuData' => $this->getMenuData(), - // Expose for skins.minerva.tablet.scripts - 'wgMinervaTocEnabled' => $out->getProperty( 'MFTOC' ), 'wgMFDescription' => $out->getProperty( 'wgMFDescription' ), ]; diff --git a/resources/skins.minerva.tablet.scripts/toc.js b/resources/skins.minerva.tablet.scripts/toc.js index ba26354..b7811d0 100644 --- a/resources/skins.minerva.tablet.scripts/toc.js +++ b/resources/skins.minerva.tablet.scripts/toc.js @@ -12,24 +12,21 @@ function init( page ) { var toc, sections = page.getSections(), - $toc = $( '#toc' ), - enableToc = mw.config.get( 'wgMinervaTocEnabled' ); + $toc = $( '#toc' ); - if ( enableToc ) { - toc = new TableOfContents( { - sections: sections - } ); + toc = new TableOfContents( { + sections: sections + } ); - // eslint-disable-next-line no-new - new Toggler( toc.$el, 'toc-', null, true ); - // if there is a toc already, replace it - if ( $toc.length > 0 ) { - // don't show toc at end of page, when no sections there - $toc.replaceWith( toc.$el ); - } else { - // otherwise append it to the lead section - toc.appendTo( page.getLeadSectionElement() ); - } + // eslint-disable-next-line no-new + new Toggler( toc.$el, 'toc-', null, true ); + // if there is a toc already, replace it + if ( $toc.length > 0 ) { + // don't show toc at end of page, when no sections there + $toc.replaceWith( toc.$el ); + } else { + // otherwise append it to the lead section + toc.appendTo( page.getLeadSectionElement() ); } }