* 绑定导航事件
()
| 1095 | * 绑定导航事件 |
| 1096 | */ |
| 1097 | bindNavigation() { |
| 1098 | if (this.bindingFlags.navigation) return; |
| 1099 | this.bindingFlags.navigation = true; |
| 1100 | |
| 1101 | if (this.dom.prevUnitBtn) { |
| 1102 | on(this.dom.prevUnitBtn, 'click', () => this.loadPreviousUnit()); |
| 1103 | } |
| 1104 | |
| 1105 | if (this.dom.nextUnitBtn) { |
| 1106 | on(this.dom.nextUnitBtn, 'click', () => this.loadNextUnit()); |
| 1107 | } |
| 1108 | } |
| 1109 | |
| 1110 | /** |
| 1111 | * 绑定翻译切换事件 |
no test coverage detected