public togglePopup()

in projects/kendo-ui-popup-ngcc/src/app/app.component.ts [19:32]


    public togglePopup(template: TemplateRef<any>) {
        this.show = !this.show;
        this.toggleText = this.show ? "Hidе" : "Show";

        if (this.popupRef) {
            this.popupRef.close();
            this.popupRef = null;
        } else {
            this.popupRef = this.popupService.open({
                content: template,
                offset: { top: 100, left: 100 }
            });
        }
    }