nycJSorg/angular-presentation

View on GitHub
apps/codelab/src/app/components/buttons-nav-bar/menu-fullscreen-widget/menu-fullscreen-widget.component.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { Component } from '@angular/core';
import { FullScreenModeService } from '@ng360/slides';

@Component({
  selector: 'codelab-menu-fullscreen-widget',
  templateUrl: './menu-fullscreen-widget.component.html',
  styleUrls: ['./menu-fullscreen-widget.component.scss']
})
export class MenuFullscreenWidgetComponent {
  constructor(private fullScreenService: FullScreenModeService) {}

  openFullScreen() {
    this.fullScreenService.toggleFullScreen();
  }
}