- +
diff --git a/aio/src/app/app.component.ts b/aio/src/app/app.component.ts index 076f833e95..d6fce32237 100644 --- a/aio/src/app/app.component.ts +++ b/aio/src/app/app.component.ts @@ -64,6 +64,7 @@ export class AppComponent implements OnInit { private sideBySideWidth = 1032; sideNavNodes: NavigationNode[]; topMenuNodes: NavigationNode[]; + topMenuNarrowNodes: NavigationNode[]; tocMaxHeight: string; private tocMaxHeightOffset = 0; versionInfo: VersionInfo; @@ -161,6 +162,7 @@ export class AppComponent implements OnInit { this.footerNodes = views['Footer'] || []; this.sideNavNodes = views['SideNav'] || []; this.topMenuNodes = views['TopBar'] || []; + this.topMenuNarrowNodes = views['TopBarNarrow'] || this.topMenuNodes; }); this.navigationService.versionInfo.subscribe( vi => this.versionInfo = vi );