()
| 201 | * Update the shield subform with the new shield. |
| 202 | */ |
| 203 | const deleteShield = function() { |
| 204 | const sign = post.panels[currentlySelectedPanelIndex].sign; |
| 205 | sign.deleteShield(this.dataset.shieldIndex); |
| 206 | updateShieldSubform(); |
| 207 | redraw(); |
| 208 | }; |
| 209 | |
| 210 | const clearShields = function() { |
| 211 | var items = post.panels[currentlySelectedPanelIndex].sign.shields.length |
nothing calls this directly
no test coverage detected