16 lines
382 B
TypeScript
16 lines
382 B
TypeScript
import { Component, Input } from '@angular/core';
|
|
import 'rxjs/Rx';
|
|
|
|
@Component({
|
|
selector: 'bottom',
|
|
templateUrl: 'bottom.component.html'
|
|
})
|
|
export class BottomComponent {
|
|
|
|
@Input() showSocialButton:boolean = true;
|
|
@Input() showOpenaire:boolean = false;
|
|
@Input() showMenu:boolean = true;
|
|
@Input() showDnet:boolean = true;
|
|
@Input() assetsPath:string ='assets/common-assets/';
|
|
}
|