app/@overflow/commons/ui/component/window/title-bar.component.ts
crusader 675fb6b992 ing
2018-09-06 11:17:32 +09:00

23 lines
373 B
TypeScript

import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-title-bar',
templateUrl: './title-bar.component.html',
})
export class TitleBarComponent implements OnInit {
style: string;
titleBarClass: string;
showTopResize: boolean;
showLeftResize: boolean;
constructor(
) { }
ngOnInit() {
}
onTitlebarDoubleClick(event) {
}
}