You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
473 B
24 lines
473 B
11 months ago
|
'use strict';
|
||
|
|
||
|
Object.defineProperty(exports, '__esModule', { value: true });
|
||
|
|
||
|
var menuItem = require('./menu-item.js');
|
||
|
|
||
|
class Menu {
|
||
|
constructor(domNode) {
|
||
|
this.domNode = domNode;
|
||
|
this.init();
|
||
|
}
|
||
|
init() {
|
||
|
const menuChildren = this.domNode.childNodes;
|
||
|
Array.from(menuChildren, (child) => {
|
||
|
if (child.nodeType === 1) {
|
||
|
new menuItem["default"](child);
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
|
||
|
exports["default"] = Menu;
|
||
|
//# sourceMappingURL=menu-bar.js.map
|