* Delete an existing panel at the requested index. * @param {number} panelIndex - Position of the panel in the array of panels on this post to delete.
(panelIndex)
| 67 | * @param {number} panelIndex - Position of the panel in the array of panels on this post to delete. |
| 68 | */ |
| 69 | deletePanel(panelIndex) { |
| 70 | this.panels.splice(panelIndex, 1); |
| 71 | } |
| 72 | |
| 73 | /** |
| 74 | * Shift the requested panel to the left one position swapping it with that panel to the left. |
no outgoing calls
no test coverage detected