Skip to content

Commit

Permalink
redundant
Browse files Browse the repository at this point in the history
  • Loading branch information
NovemLinguae committed Jul 26, 2023
1 parent a0c60da commit c70619b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions twinkle.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit c70619b

Please sign in to comment.