()
| 204 | }; |
| 205 | |
| 206 | const addSubPanel = function() { |
| 207 | const sign = post.panels[currentlySelectedPanelIndex].sign; |
| 208 | sign.newSubPanel(); |
| 209 | currentlySelectedSubPanelIndex++ |
| 210 | updateForm(); |
| 211 | redraw(); |
| 212 | } |
| 213 | |
| 214 | const removeSubPanel = function() { |
| 215 | const sign = post.panels[currentlySelectedPanelIndex].sign; |
nothing calls this directly
no test coverage detected