mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-24 07:43:47 +00:00
Add icon classes to portlet links without IDs
Only limit the mw-ui-icon-vector-gadget-ID class to portlet links with IDs. Bug: T301012 Change-Id: Ib69957b8d44d9b2a02df9f453de262beb8740799
This commit is contained in:
parent
11b968cf18
commit
1b0af9022b
|
@ -63,18 +63,22 @@ function addPortletLinkHandler( item, data ) {
|
|||
'vector-menu-dropdown-noicon'
|
||||
);
|
||||
|
||||
if ( isIconCapable && data.id && link ) {
|
||||
if ( isIconCapable && link ) {
|
||||
// If class was previously added this will be a no-op so it is safe to call even
|
||||
// if we've previously enhanced it.
|
||||
link.classList.add(
|
||||
'mw-ui-icon',
|
||||
'mw-ui-icon-before',
|
||||
'mw-ui-icon-before'
|
||||
);
|
||||
|
||||
if ( data.id ) {
|
||||
// The following class allows gadgets developers to style or hide an icon.
|
||||
// * mw-ui-icon-vector-gadget-<id>
|
||||
// The class is considered stable and should not be removed without
|
||||
// a #user-notice.
|
||||
'mw-ui-icon-vector-gadget-' + data.id
|
||||
);
|
||||
// eslint-disable-next-line mediawiki/class-doc
|
||||
link.classList.add( 'mw-ui-icon-vector-gadget-' + data.id );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue