Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
tinayuangao committed Aug 4, 2017
1 parent b1e9b87 commit db164c8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/lib/chips/chip-list.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ describe('MdChipList', () => {
tick();

expect(chipListInstance._tabIndex).toBe(4, 'Expected tabIndex to be reset back to 4');
}))
}));
});
});
});
Expand Down
2 changes: 1 addition & 1 deletion src/lib/chips/chip-list.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export class MdChipList implements AfterContentInit, OnDestroy {

/** User defined tab index.
* When it is not null, use user defined tab index. Otherwise use _tabIndex */
_userTabIndex : number | null = null;
_userTabIndex: number | null = null;

/** The FocusKeyManager which handles focus. */
_keyManager: FocusKeyManager;
Expand Down

0 comments on commit db164c8

Please sign in to comment.