app/@overflow/commons/ui/component/menu/menu-bar.component.ts

23 lines
397 B
TypeScript
Raw Normal View History

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 15:16:28 +00:00
templateUrl: './menu-bar.component.html',
2018-08-15 00:36:18 +00:00
})
2018-08-15 15:16:28 +00:00
export class MenuBarComponent implements OnInit {
2018-08-15 00:36:18 +00:00
private style: string;
private titleBarClass: string;
private showTopResize: boolean;
private showLeftResize: boolean;
constructor(
) { }
ngOnInit() {
}
onTitlebarDoubleClick() {
}
}