Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/lib/tabs/tab-nav-bar/tab-nav-bar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@ export class MatTabNav extends _MatTabNavMixinBase implements AfterContentInit,
*/
updateActiveLink(element: ElementRef) {
// Note: keeping the `element` for backwards-compat, but isn't being used for anything.
// @deletion-target 7.0.0
this._activeLinkChanged = !!element;
this._changeDetectorRef.markForCheck();
}
Expand Down Expand Up @@ -200,10 +201,10 @@ export class MatTabLink extends _MatTabLinkMixinBase
implements OnDestroy, CanDisable, CanDisableRipple, HasTabIndex, RippleTarget {

/** Whether the tab link is active or not. */
private _isActive: boolean = false;
protected _isActive: boolean = false;

/** Reference to the RippleRenderer for the tab-link. */
private _tabLinkRipple: RippleRenderer;
protected _tabLinkRipple: RippleRenderer;

/** Whether the link is active. */
@Input()
Expand Down