(exitTabIndex)
| 256 | |
| 257 | // Create a duplicate of the exit tab. |
| 258 | const duplicateExitTab = function(exitTabIndex) { |
| 259 | const panel = post.panels[currentlySelectedPanelIndex]; |
| 260 | panel.duplicateExitTab(exitTabIndex); |
| 261 | currentlySelectedExitTabIndex++; |
| 262 | updateForm(); |
| 263 | redraw(); |
| 264 | } |
| 265 | |
| 266 | // Delete the exit tab. |
| 267 | const removeExitTab = function(exitTabIndex) { |
nothing calls this directly
no test coverage detected