MediaWiki talk:Gadget-purgetab.js

Add topic
From Meta, a Wikimedia project coordination wiki
Latest comment: 1 year ago by Xaosflux

The purge gadget should only show as a * on skins where all portlet links are tabs. As far as I know this is only monobook these days. This was already fixed for vector, but not for vector-2022 and timeless and minerva. Please change mw.config.get( 'skin' ) === 'vector' to mw.config.get( 'skin' ) === 'monobook'. —TheDJ (talkcontribs) 09:24, 15 February 2023 (UTC)Reply

I suppose modern as well, but that has to be rarely used. — xaosflux Talk 10:38, 15 February 2023 (UTC)Reply
Label at MediaWiki:Gadget-purgetab should prob be updated as well. — xaosflux Talk 10:42, 15 February 2023 (UTC)Reply

Though I think this would instead need to change from:

mw.config.get( 'skin' ) === 'vector' ? 'Purge' : '*',

To

mw.config.get( 'skin' ) === 'monobook' ? '*' : 'Purge',

Instead? — xaosflux Talk 10:50, 15 February 2023 (UTC)Reply

Donexaosflux Talk 00:59, 17 February 2023 (UTC)Reply