2018-04-03 10:39:17 +02:00
|
|
|
import { Component, Input } from '@angular/core';
|
2017-12-19 13:53:46 +01:00
|
|
|
import 'rxjs/Rx';
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'bottom',
|
2018-04-03 10:39:17 +02:00
|
|
|
templateUrl: 'bottom.component.html'
|
2017-12-19 13:53:46 +01:00
|
|
|
})
|
|
|
|
export class BottomComponent {
|
|
|
|
|
2018-04-03 10:39:17 +02:00
|
|
|
@Input() showSocialButton:boolean = true;
|
|
|
|
@Input() showOpenaire:boolean = false;
|
|
|
|
@Input() showMenu:boolean = true;
|
|
|
|
@Input() showDnet:boolean = true;
|
2017-12-19 13:53:46 +01:00
|
|
|
}
|