| 1234567891011121314151617181920212223 |
- 'use strict';
- Object.defineProperty(exports, '__esModule', { value: true });
- var menuItem = require('./menu-item.js');
- class Menu {
- constructor(domNode, namespace) {
- this.domNode = domNode;
- this.init(namespace);
- }
- init(namespace) {
- const menuChildren = this.domNode.childNodes;
- Array.from(menuChildren).forEach((child) => {
- if (child.nodeType === 1) {
- new menuItem["default"](child, namespace);
- }
- });
- }
- }
- exports["default"] = Menu;
- //# sourceMappingURL=menu-bar.js.map
|