40416: small fixes and thumbnails

This commit is contained in:
Lotte Hofstede
2017-05-03 14:28:26 +02:00
parent b6fd84eb38
commit d932b44a77
23 changed files with 302 additions and 216 deletions

View File

@@ -0,0 +1,24 @@
import { Component, Input } from '@angular/core';
import { Bitstream } from "../core/shared/bitstream.model";
import { Observable } from "rxjs";
@Component({
selector: 'ds-thumbnail',
styleUrls: ['./thumbnail.component.css'],
templateUrl: './thumbnail.component.html'
})
export class ThumbnailComponent {
@Input() thumbnail : Observable<Bitstream>;
data: any = {};
constructor() {
this.universalInit();
}
universalInit() {
}
}