mirror of
https://github.com/Pax1601/DCSOlympus.git
synced 2025-10-29 16:56:34 +00:00
17 lines
433 B
TypeScript
17 lines
433 B
TypeScript
import { Dropdown } from "../controls/dropdown";
|
|
import { Toolbar } from "./toolbar";
|
|
|
|
export class PrimaryToolbar extends Toolbar {
|
|
#mainDropdown: Dropdown;
|
|
|
|
constructor(ID: string) {
|
|
super(ID);
|
|
|
|
/* The content of the dropdown is entirely defined in the .ejs file */
|
|
this.#mainDropdown = new Dropdown("app-icon", () => { });
|
|
}
|
|
|
|
getMainDropdown() {
|
|
return this.#mainDropdown;
|
|
}
|
|
} |