()
| 107 | }); |
| 108 | |
| 109 | ngAfterContentInit() { |
| 110 | if (!this.isInline) { |
| 111 | this.menuStack.push(this); |
| 112 | } |
| 113 | this._setItems(); |
| 114 | this._setKeyManager(); |
| 115 | this._handleFocus(); |
| 116 | this._subscribeToMenuStackHasFocus(); |
| 117 | this._subscribeToMenuOpen(); |
| 118 | this._subscribeToMenuStackClosed(); |
| 119 | this._setUpPointerTracker(); |
| 120 | } |
| 121 | |
| 122 | ngOnDestroy() { |
| 123 | this._focusMonitor.stopMonitoring(this.nativeElement); |
nothing calls this directly
no test coverage detected