()
| 105 | } |
| 106 | |
| 107 | init() { |
| 108 | this.tabContainer.addEventListener( |
| 109 | "click", |
| 110 | this.onTabClickEvent.bind(this), |
| 111 | ); |
| 112 | this.contentContainer.addEventListener( |
| 113 | "scroll", |
| 114 | this.onContentScrollEvent.bind(this), |
| 115 | ); |
| 116 | } |
| 117 | |
| 118 | destroy() { |
| 119 | this.tabContainer.removeEventListener( |
no outgoing calls
no test coverage detected