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