mirror of
https://github.com/Redocly/redoc.git
synced 2024-11-22 16:46:34 +03:00
Fix linting errors
This commit is contained in:
parent
104bcb9cef
commit
cc8e0f6ba5
|
@ -27,16 +27,16 @@ import { LazyTasksService } from '../../shared/components/LazyFor/lazy-for';
|
||||||
export class Redoc extends BaseComponent implements OnInit {
|
export class Redoc extends BaseComponent implements OnInit {
|
||||||
static _preOptions: any;
|
static _preOptions: any;
|
||||||
|
|
||||||
private element: HTMLElement;
|
|
||||||
private $parent: Element;
|
|
||||||
private $refElem: Element;
|
|
||||||
|
|
||||||
error: any;
|
error: any;
|
||||||
specLoaded: boolean;
|
specLoaded: boolean;
|
||||||
options: any;
|
options: any;
|
||||||
|
|
||||||
loadingProgress: number;
|
loadingProgress: number;
|
||||||
|
|
||||||
|
private element: HTMLElement;
|
||||||
|
private $parent: Element;
|
||||||
|
private $refElem: Element;
|
||||||
|
|
||||||
@Input() specUrl: string;
|
@Input() specUrl: string;
|
||||||
@HostBinding('class.loading') specLoading: boolean = false;
|
@HostBinding('class.loading') specLoading: boolean = false;
|
||||||
@HostBinding('class.loading-remove') specLoadingRemove: boolean = false;
|
@HostBinding('class.loading-remove') specLoadingRemove: boolean = false;
|
||||||
|
|
|
@ -17,7 +17,6 @@ const CHANGE = {
|
||||||
|
|
||||||
@Injectable()
|
@Injectable()
|
||||||
export class MenuService {
|
export class MenuService {
|
||||||
private _hashSubscription: Subscription;
|
|
||||||
|
|
||||||
changed: EventEmitter<any> = new EventEmitter();
|
changed: EventEmitter<any> = new EventEmitter();
|
||||||
ready: BehaviorSubject<boolean> = new BehaviorSubject(false);
|
ready: BehaviorSubject<boolean> = new BehaviorSubject(false);
|
||||||
|
@ -26,6 +25,8 @@ export class MenuService {
|
||||||
activeCatIdx: number = 0;
|
activeCatIdx: number = 0;
|
||||||
activeMethodIdx: number = -1;
|
activeMethodIdx: number = -1;
|
||||||
|
|
||||||
|
private _hashSubscription: Subscription;
|
||||||
|
|
||||||
constructor(
|
constructor(
|
||||||
private hash:Hash,
|
private hash:Hash,
|
||||||
private tasks: LazyTasksService,
|
private tasks: LazyTasksService,
|
||||||
|
|
Loading…
Reference in New Issue
Block a user