]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - client/src/app/shared/shared-main/angular/link.component.ts
Fix action dropdown height
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared-main / angular / link.component.ts
... / ...
CommitLineData
1import { Component, Input, OnInit } from '@angular/core'
2
3@Component({
4 selector: 'my-link',
5 styleUrls: [ './link.component.scss' ],
6 templateUrl: './link.component.html'
7})
8export class LinkComponent implements OnInit {
9 @Input() internalLink?: string | any[]
10
11 @Input() href?: string
12 @Input() target = '_self'
13
14 @Input() title?: string
15
16 @Input() className?: string
17
18 @Input() tabindex: string | number
19
20 builtClasses: string
21
22 ngOnInit () {
23 this.builtClasses = this.className
24 ? this.className
25 : 'no-class'
26 }
27}