mirror of
https://github.com/Pax1601/DCSOlympus.git
synced 2025-10-29 16:56:34 +00:00
13 lines
373 B
TypeScript
13 lines
373 B
TypeScript
import { Dropdown } from "../controls/dropdown";
|
|
import { Toolbar } from "./toolbar";
|
|
|
|
export class PrimaryToolbar extends Toolbar {
|
|
constructor(ID: string) {
|
|
super(ID);
|
|
|
|
// TODO move here all code about primary toolbar
|
|
|
|
/* The content of the dropdown is entirely defined in the .ejs file */
|
|
new Dropdown("app-icon", () => { });
|
|
}
|
|
} |