Skip to content

Commit

Permalink
remove private on functions/variables used in template
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewseguin committed Dec 8, 2016
1 parent 4ee83d9 commit 5e5122f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/lib/tabs/tab-header.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,10 @@ export class MdTabHeader {
_showPaginationControls = false;

/** Whether the tab list can be scrolled more towards the end of the tab label list. */
private _disableScrollAfter = true;
_disableScrollAfter = true;

/** Whether the tab list can be scrolled more towards the beginning of the tab label list. */
private _disableScrollBefore = true;
_disableScrollBefore = true;

/**
* The number of tab labels that are displayed on the header. When this changes, the header
Expand Down Expand Up @@ -136,7 +136,7 @@ export class MdTabHeader {
});
}

private _handleKeydown(event: KeyboardEvent) {
_handleKeydown(event: KeyboardEvent) {
switch (event.keyCode) {
case RIGHT_ARROW:
this._focusNextTab();
Expand Down

0 comments on commit 5e5122f

Please sign in to comment.