Skip to content
full-screen.component.ts 398 B
Newer Older
wangqinghua's avatar
wangqinghua committed
import { Component, OnInit } from '@angular/core';
import {JhiMainComponent} from '../../layouts';

@Component({
  selector: 'smart-full-screen',
  templateUrl: './full-screen.component.html',
  styles: []
})
export class FullScreenComponent implements OnInit {

  constructor(private main:JhiMainComponent) { }

  ngOnInit() {
  }

    showInFullScreen(){
        this.main.fullScreen();
    }

}