()
| 1205 | } |
| 1206 | |
| 1207 | function prevPage() { |
| 1208 | if (currentPage.value > 1) { |
| 1209 | currentPage.value -= 1; |
| 1210 | pageInput.value = currentPage.value; |
| 1211 | loadVMList(); |
| 1212 | } |
| 1213 | } |
| 1214 | |
| 1215 | function goToPage() { |
| 1216 | let page = Number.parseInt(String(pageInput.value), 10); |
nothing calls this directly
no test coverage detected