23 lines
399 B
TypeScript
23 lines
399 B
TypeScript
|
import { Component, OnInit } from '@angular/core';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'of-title-bar',
|
||
|
templateUrl: './title-bar.component.html',
|
||
|
})
|
||
|
export class TitleBarComponent implements OnInit {
|
||
|
|
||
|
private style: string;
|
||
|
private titleBarClass: string;
|
||
|
private showTopResize: boolean;
|
||
|
private showLeftResize: boolean;
|
||
|
|
||
|
constructor(
|
||
|
) { }
|
||
|
|
||
|
ngOnInit() {
|
||
|
}
|
||
|
|
||
|
onTitlebarDoubleClick() {
|
||
|
}
|
||
|
}
|