diff --git a/@overflow/commons/ui/component/primeng/popup-panel.component.ts b/@overflow/commons/ui/component/primeng/popup-panel.component.ts index 31a61e4..dc00d7a 100644 --- a/@overflow/commons/ui/component/primeng/popup-panel.component.ts +++ b/@overflow/commons/ui/component/primeng/popup-panel.component.ts @@ -38,7 +38,7 @@ export class PopupPanelComponent implements OnDestroy { @ViewChild('container') containerViewChild: ElementRef; - private readonly popup = true; + readonly popup = true; container: HTMLDivElement; diff --git a/@overflow/commons/ui/component/window/title-bar.component.ts b/@overflow/commons/ui/component/window/title-bar.component.ts index 9bd0025..1f2b195 100644 --- a/@overflow/commons/ui/component/window/title-bar.component.ts +++ b/@overflow/commons/ui/component/window/title-bar.component.ts @@ -6,10 +6,10 @@ import { Component, OnInit } from '@angular/core'; }) export class TitleBarComponent implements OnInit { - private style: string; - private titleBarClass: string; - private showTopResize: boolean; - private showLeftResize: boolean; + style: string; + titleBarClass: string; + showTopResize: boolean; + showLeftResize: boolean; constructor( ) { } @@ -17,6 +17,6 @@ export class TitleBarComponent implements OnInit { ngOnInit() { } - onTitlebarDoubleClick() { + onTitlebarDoubleClick(event) { } } diff --git a/@overflow/commons/ui/component/window/window-controls.component.html b/@overflow/commons/ui/component/window/window-controls.component.html index 0353b16..2fce396 100644 --- a/@overflow/commons/ui/component/window/window-controls.component.html +++ b/@overflow/commons/ui/component/window/window-controls.component.html @@ -4,7 +4,7 @@ -