All Downloads are FREE. Search and download functionalities are using the official Maven repository.

js.factoryEditing.NavItem.js Maven / Gradle / Ivy

export class NavItem {
    constructor(text, factory, factoryEditor) {
        this.text = text;
        this.factory = factory;
        this.factoryEditor = factoryEditor;
    }
    create() {
        let navItem = document.createElement("a");
        navItem.className = "nav-item nav-link";
        navItem.textContent = this.text;
        navItem.onclick = (e) => {
            this.factoryEditor.edit(this.factory);
            e.preventDefault();
        };
        navItem.href = "#";
        return navItem;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy