This commit is contained in:
crusader
2018-09-06 11:17:32 +09:00
parent 559d5a3dd8
commit 675fb6b992
4 changed files with 12 additions and 12 deletions

View File

@@ -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) {
}
}