From c70619be9cf4be12b13b1a0de34fa754168d78be Mon Sep 17 00:00:00 2001 From: NovemLinguae Date: Wed, 26 Jul 2023 05:43:07 -0700 Subject: [PATCH] redundant --- twinkle.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/twinkle.js b/twinkle.js index 169c40e56..d35a07901 100644 --- a/twinkle.js +++ b/twinkle.js @@ -196,19 +196,19 @@ class TwinkleHTMLGenerator { constructor(skin) { this.skin = skin; - /** @type {String} navigation id of the target navigation area (skin dependant, on vector either of "left-navigation", "right-navigation", or "mw-panel") */ + /** @type {String} id of the target navigation area (skin dependant, on vector either of "left-navigation", "right-navigation", or "mw-panel") */ this.navigation = ''; - /** @type {String} id id of the portlet menu to create, preferably start with "p-". */ + /** @type {String} id of the portlet menu to create, preferably start with "p-". */ this.id = ''; - /** @type {String} text name of the portlet menu to create. Visibility depends on the class used. */ + /** @type {String} name of the portlet menu to create. Visibility depends on the class used. */ this.text = ''; - /** @type {String} type type of portlet. Currently only used for the vector non-sidebar portlets, pass "menu" to make this portlet a drop down menu. */ + /** @type {String} type of portlet. Currently only used for the vector non-sidebar portlets, pass "menu" to make this portlet a drop down menu. */ this.type = ''; - /** @type {Node} nextnodeid the id of the node before which the new item should be added, should be another item in the same list, or undefined to place it at the end. */ + /** @type {Node} the id of the node before which the new item should be added, should be another item in the same list, or undefined to place it at the end. */ this.nextnodeid = {}; switch (this.skin) {