MediaWiki talk:Gadget-purgetab.js
Add topicAppearance
Latest comment: 1 year ago by Xaosflux
This edit request has been answered. Set the |answered= or |ans= parameter to no to reactivate your request. |
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 (talk • contribs) 09:24, 15 February 2023 (UTC)
- I suppose
modern
as well, but that has to be rarely used. — xaosflux Talk 10:38, 15 February 2023 (UTC)- Label at MediaWiki:Gadget-purgetab should prob be updated as well. — xaosflux Talk 10:42, 15 February 2023 (UTC)
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)