(exitTabIndex)
| 265 | |
| 266 | // Delete the exit tab. |
| 267 | const removeExitTab = function(exitTabIndex) { |
| 268 | const panel = post.panels[currentlySelectedPanelIndex]; |
| 269 | panel.deleteExitTab(exitTabIndex); |
| 270 | currentlySelectedExitTabIndex-- |
| 271 | updateForm(); |
| 272 | redraw(); |
| 273 | } |
| 274 | |
| 275 | // Delete the exit tab within the parent exitTab |
| 276 | const deleteNestExitTab = function(nestExitTabIndex) { |
nothing calls this directly
no test coverage detected