2018-08-15 00:36:18 +00:00
|
|
|
import { Component, OnInit } from '@angular/core';
|
|
|
|
|
|
|
|
@Component({
|
2018-08-15 14:54:10 +00:00
|
|
|
selector: 'app-menu-bar',
|
2018-08-15 00:36:18 +00:00
|
|
|
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() {
|
|
|
|
}
|
|
|
|
}
|