mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Cite
synced 2024-11-27 08:20:02 +00:00
Fix some documentation warnings
Change-Id: I7a97c99a919796f987a05ba17e25357fb5ef14c5
This commit is contained in:
parent
61879d1369
commit
66fb3e661a
|
@ -250,7 +250,14 @@ ve.ce.MWReferencesListNode.prototype.update = function () {
|
|||
};
|
||||
|
||||
/**
|
||||
* Render a reference list item
|
||||
*
|
||||
* @private
|
||||
* @param {Object} nodes Node group object, containing nodes and key order array
|
||||
* @param {ve.dm.InternalList} internalList Internal list
|
||||
* @param {string} refGroup Reference group
|
||||
* @param {number} index Item index
|
||||
* @return {jQuery} List item
|
||||
*/
|
||||
ve.ce.MWReferencesListNode.prototype.renderListItem = function ( nodes, internalList, refGroup, index ) {
|
||||
const key = internalList.keys[ index ];
|
||||
|
|
|
@ -3,7 +3,8 @@ import * as helpers from './functions.helper.js';
|
|||
export function setVECookiesToDisableDialogs() {
|
||||
cy.window().then( async ( win ) => {
|
||||
win.localStorage.setItem( 've-beta-welcome-dialog', 1 );
|
||||
// don't show the VE education popups with the blue pulsating dots (ve.ui.MWEducationPopupWidget)
|
||||
// Don't show the VE education popups with the blue
|
||||
// pulsating dots (ve.ui.MWEducationPopupWidget)
|
||||
win.localStorage.setItem( 've-hideusered', 1 );
|
||||
} );
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue