MDL-75962 js: Fix jsdoc violations

This commit is contained in:
Andrew Nicols
2022-10-12 10:06:40 +08:00
parent e4c5a12a1c
commit 18a4241fee
4 changed files with 5 additions and 5 deletions
File diff suppressed because one or more lines are too long
+2 -2
View File
@@ -62,9 +62,9 @@ function(
LOADING_ICON: 'core/loading'
};
/** @type {number} The total items will be shown on the first load. */
/** @property {number} The total items will be shown on the first load. */
const DEFAULT_LAZY_LOADING_ITEMS_FIRST_LOAD = 5;
/** @type {number} The total items will be shown when click on the Show more activities button. */
/** @property {number} The total items will be shown when click on the Show more activities button. */
const DEFAULT_LAZY_LOADING_ITEMS_OTHER_LOAD = 10;
/**
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -292,7 +292,7 @@ define([
* Get the chart data, add labels and rebuild the tooltip.
*
* @param {Object[]} tooltipItem The tooltip item object.
* @returns {*[]}
* @returns {Array}
* @protected
*/
Output.prototype._makeTooltip = function(tooltipItem) {