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

js.factoryEditing.widget.root.Root.js Maven / Gradle / Ivy

There is a newer version: 4.0.2
Show newest version
//generated code don't edit manually
import { Widget } from "../../base/Widget";
export class Root extends Widget {
    constructor(view, waitAnimation, errorReporter) {
        super();
        this.view = view;
        this.waitAnimation = waitAnimation;
        this.errorReporter = errorReporter;
    }
    render() {
        let htmlDivElement = document.createElement("div");
        this.waitAnimation.append(htmlDivElement);
        this.view.append(htmlDivElement);
        this.errorReporter.append(htmlDivElement);
        return htmlDivElement;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy