()
| 238 | |
| 239 | // Create a new exit tab, update the form, and redraw. |
| 240 | const newExitTab = function() { |
| 241 | const panel = post.panels[currentlySelectedPanelIndex]; |
| 242 | panel.newExitTab(); |
| 243 | currentlySelectedExitTabIndex = panel.exitTabs.length - 1; |
| 244 | updateForm(); |
| 245 | redraw(); |
| 246 | } |
| 247 | |
| 248 | // Create a new nested exit tab within the parent exit tab. |
| 249 | const newNestExitTab = function() { |
nothing calls this directly
no test coverage detected