Skip to content

Commit 7179b75

Browse files
committed
lint fixes.
1 parent 9131d00 commit 7179b75

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

src/lib/core/a11y/focus-trap.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export class FocusTrap implements AfterContentInit {
2929
get active(): boolean {
3030
return this._active;
3131
}
32-
set active(val : boolean) {
32+
set active(val: boolean) {
3333
this._active = val;
3434
if (val && this._contentReady) {
3535
this._ngZone.onMicrotaskEmpty.first().subscribe(() => {
@@ -39,10 +39,10 @@ export class FocusTrap implements AfterContentInit {
3939
}
4040

4141
/** Whether the DOM content is ready. */
42-
private _contentReady : boolean = false;
42+
private _contentReady: boolean = false;
4343

4444
/** Whether the focus trap is active. */
45-
private _active : boolean = true;
45+
private _active: boolean = true;
4646

4747
constructor(private _checker: InteractivityChecker, private _ngZone: NgZone) { }
4848

src/lib/core/a11y/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import {NgModule, ModuleWithProviders} from '@angular/core';
22
import {FocusTrap} from './focus-trap';
33
import {MdLiveAnnouncer} from './live-announcer';
44
import {InteractivityChecker} from './interactivity-checker';
5-
import {CommonModule} from "@angular/common";
5+
import {CommonModule} from '@angular/common';
66

77
export const A11Y_PROVIDERS = [MdLiveAnnouncer, InteractivityChecker];
88

src/lib/sidenav/sidenav.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import {fakeAsync, async, tick, ComponentFixture, TestBed} from '@angular/core/t
22
import {Component} from '@angular/core';
33
import {By} from '@angular/platform-browser';
44
import {MdSidenav, MdSidenavModule} from './sidenav';
5-
import {A11yModule} from "../core/a11y/index";
5+
import {A11yModule} from '../core/a11y/index';
66

77

88
function endSidenavTransition(fixture: ComponentFixture<any>) {

src/lib/sidenav/sidenav.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import {
1616
} from '@angular/core';
1717
import {CommonModule} from '@angular/common';
1818
import {Dir, MdError, coerceBooleanProperty} from '../core';
19-
import {A11yModule} from "../core/a11y/index";
19+
import {A11yModule} from '../core/a11y/index';
2020

2121

2222
/** Exception thrown when two MdSidenav are matching the same side. */

0 commit comments

Comments
 (0)