2018-10-16 12:41:46 +02:00
|
|
|
import { Component, Input } from '@angular/core';
|
|
|
|
|
2019-01-24 16:25:50 +01:00
|
|
|
import { BaseComponent } from '../../../base.component';
|
2019-01-19 21:55:06 +01:00
|
|
|
import { ViewportService } from 'app/core/ui-services/viewport.service';
|
2018-10-16 12:41:46 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Component for the motion comments view
|
|
|
|
*/
|
|
|
|
@Component({
|
|
|
|
selector: 'os-meta-text-block',
|
|
|
|
templateUrl: './meta-text-block.component.html',
|
|
|
|
styleUrls: ['./meta-text-block.component.scss']
|
|
|
|
})
|
|
|
|
export class MetaTextBlockComponent extends BaseComponent {
|
|
|
|
@Input()
|
|
|
|
public showActionRow: boolean;
|
|
|
|
|
|
|
|
public constructor(public vp: ViewportService) {
|
|
|
|
super();
|
|
|
|
}
|
|
|
|
}
|