blob: 8bee848a4aff81d915755527842afb734a399e0c (
plain) (
tree)
|
|
import { Component, Input, ViewChild } from '@angular/core';
import { ModalDirective } from 'ng2-bootstrap/modal';
import { Video } from '../shared';
@Component({
selector: 'my-video-magnet',
templateUrl: './video-magnet.component.html'
})
export class VideoMagnetComponent {
@Input() video: Video = null;
@ViewChild('modal') modal: ModalDirective;
constructor() {
// empty
}
show() {
this.modal.show();
}
hide() {
this.modal.hide();
}
}
|