Skip to content

Commit

Permalink
Fix Linters... again :P
Browse files Browse the repository at this point in the history
  • Loading branch information
devversion committed May 27, 2016
1 parent 4f7bc71 commit 2456ac1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 1 addition & 2 deletions src/components/slide-toggle/slide-toggle.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@ import {
expect,
beforeEach,
inject,
async,
fakeAsync,
async
} from '@angular/core/testing';
import {TestComponentBuilder, ComponentFixture} from '@angular/compiler/testing';
import {By} from '@angular/platform-browser';
Expand Down
4 changes: 3 additions & 1 deletion src/components/slide-toggle/slide-toggle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,9 @@ export class MdSlideToggle implements ControlValueAccessor {
@Input() ariaLabel: string = null;
@Input() ariaLabelledby: string = null;

@Output('change') private _change: EventEmitter<MdSlideToggleChange> = new EventEmitter<MdSlideToggleChange>();
@Output('change')
private _change: EventEmitter<MdSlideToggleChange> = new EventEmitter<MdSlideToggleChange>();

change: Observable<MdSlideToggleChange> = this._change.asObservable();

// Returns the unique id for the visual hidden input.
Expand Down

0 comments on commit 2456ac1

Please sign in to comment.