2019-02-21 14:40:07 +01:00
|
|
|
import { Component, Input } from '@angular/core';
|
2019-02-15 12:17:08 +01:00
|
|
|
|
|
|
|
import { BaseSlideComponent } from 'app/slides/base-slide-component';
|
2019-02-21 14:40:07 +01:00
|
|
|
import { CommonListOfSpeakersSlideData } from '../common/common-list-of-speakers-slide-data';
|
2019-02-15 12:17:08 +01:00
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'os-current-list-of-speakers-overlay-slide',
|
|
|
|
templateUrl: './current-list-of-speakers-overlay-slide.component.html',
|
|
|
|
styleUrls: ['./current-list-of-speakers-overlay-slide.component.scss']
|
|
|
|
})
|
2019-02-21 14:40:07 +01:00
|
|
|
export class CurrentListOfSpeakersOverlaySlideComponent extends BaseSlideComponent<CommonListOfSpeakersSlideData> {
|
|
|
|
// TODO: remove to access data in the template
|
|
|
|
@Input()
|
|
|
|
public set data(value: any) {
|
|
|
|
console.log(value.data);
|
|
|
|
}
|
|
|
|
|
2019-02-15 12:17:08 +01:00
|
|
|
public constructor() {
|
|
|
|
super();
|
|
|
|
}
|
|
|
|
}
|