()
| 247 | |
| 248 | // Create a new nested exit tab within the parent exit tab. |
| 249 | const newNestExitTab = function() { |
| 250 | const exitTab = post.panels[currentlySelectedPanelIndex].exitTabs[currentlySelectedExitTabIndex]; |
| 251 | exitTab.nestExitTab(); |
| 252 | currentlySelectedNestedExitTabIndex = exitTab.nestedExitTabs.length - 1; |
| 253 | updateForm(); |
| 254 | redraw(); |
| 255 | } |
| 256 | |
| 257 | // Create a duplicate of the exit tab. |
| 258 | const duplicateExitTab = function(exitTabIndex) { |
nothing calls this directly
no test coverage detected