Add JS files

This commit is contained in:
2025-05-12 15:45:17 +00:00
parent 7ddd15c4fa
commit 967007b0c7
3239 changed files with 1157078 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
/* Copyright (c) 2006 Yahoo! Inc. All rights reserved. */
/**
* A menu-specific implementation that differs from TextNode in that only
* one sibling can be expanded at a time.
* @extends YAHOO.widget.TextNode
* @constructor
*/
YAHOO.widget.MenuNode = function(oData, oParent, expanded) {
if (oParent) {
this.init(oData, oParent, expanded);
this.setUpLabel(oData);
}
/**
* Menus usually allow only one branch to be open at a time.
* @type boolean
*/
this.multiExpand = false;
};
YAHOO.widget.MenuNode.prototype = new YAHOO.widget.TextNode();