Called when a transition is done.
()
| 258 | |
| 259 | /** Called when a transition is done. */ |
| 260 | private _transitionDone() { |
| 261 | if (this._position === 'center') { |
| 262 | this._onCentered.emit(); |
| 263 | } else if (this._previousPosition === 'center') { |
| 264 | this._afterLeavingCenter.emit(); |
| 265 | } |
| 266 | } |
| 267 | |
| 268 | /** Sets the active styling on the tab body based on its current position. */ |
| 269 | _setActiveClass(isActive: boolean) { |
no outgoing calls
no test coverage detected