app/@overflow/commons/ui/component/window/title-bar.component.ts

23 lines
373 B
TypeScript
Raw Normal View History

2018-08-14 12:26:23 +00:00
import { Component, OnInit } from '@angular/core';
@Component({
2018-08-15 14:54:10 +00:00
selector: 'app-title-bar',
2018-08-14 12:26:23 +00:00
templateUrl: './title-bar.component.html',
})
export class TitleBarComponent implements OnInit {
2018-09-06 02:17:32 +00:00
style: string;
titleBarClass: string;
showTopResize: boolean;
showLeftResize: boolean;
2018-08-14 12:26:23 +00:00
constructor(
) { }
ngOnInit() {
}
2018-09-06 02:17:32 +00:00
onTitlebarDoubleClick(event) {
2018-08-14 12:26:23 +00:00
}
}