Skip to content

Commit

Permalink
FIx: Active should be a property
Browse files Browse the repository at this point in the history
Since active is used in the viewcomponent it should be a property.
  • Loading branch information
StefanKert committed Mar 25, 2017
1 parent 6ab3f44 commit d518498
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,9 @@ export class BlockUIContentComponent implements OnInit, OnDestroy {
@Input() name: string = BlockUIDefaultName;
@Input('message') defaultMessage: string;

active: boolean = false;

private message: string;
private active: boolean = false;
private blockUISubscription: Subscription;

constructor(
Expand Down

0 comments on commit d518498

Please sign in to comment.