fix(aio): fix linting issues
This commit is contained in:
parent
6e89f0bf8d
commit
baecb553a6
@ -35,17 +35,11 @@ import { Contributor } from './contributors.model';
|
||||
`
|
||||
})
|
||||
export class ContributorComponent {
|
||||
@Input() person: Contributor;
|
||||
noPicture = '_no-one.png';
|
||||
pictureBase = 'content/images/bios/';
|
||||
|
||||
flipCard(person){
|
||||
if(person.isFlipped==true){
|
||||
person.isFlipped=false;
|
||||
}else{
|
||||
person.isFlipped=true;
|
||||
}
|
||||
}
|
||||
@Input() person: Contributor;
|
||||
noPicture = '_no-one.png';
|
||||
pictureBase = 'content/images/bios/';
|
||||
|
||||
flipCard(person) {
|
||||
person.isFlipped = !person.isFlipped;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -11,5 +11,5 @@ export class Contributor {
|
||||
website?: string;
|
||||
twitter?: string;
|
||||
bio?: string;
|
||||
isFlipped?: boolean = false;
|
||||
isFlipped? = false;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user