Skip to content
This repository has been archived by the owner on Dec 8, 2022. It is now read-only.

Commit

Permalink
Merge branch 'fix-wait-not-blocking-focus-nav' of github.com:blackbau…
Browse files Browse the repository at this point in the history
…d/skyux-indicators into fix-wait-not-blocking-focus-nav
  • Loading branch information
blackbaud-conorwright committed Dec 13, 2018
2 parents 836d73f + 284d524 commit 6cd6698
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/app/public/modules/wait/wait.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,6 @@ export class SkyWaitComponent implements OnInit {
@Input()
public ariaLabel: string;

public id: string = `sky-wait-${++nextId}`;

@Input()
public set isWaiting(value: boolean) {
if (value && !this._isFullPage) {
Expand Down Expand Up @@ -75,6 +73,7 @@ export class SkyWaitComponent implements OnInit {

public ariaLabelStream = new BehaviorSubject<string>('');

private id: string = `sky-wait-${++nextId}`;
private _isFullPage: boolean;
private _isWaiting: boolean;

Expand Down

0 comments on commit 6cd6698

Please sign in to comment.