* rotate order of portions by one in previous direction
()
| 203 | * rotate order of portions by one in previous direction |
| 204 | */ |
| 205 | rotateLeft() { |
| 206 | const lastChild = this.children.pop(); |
| 207 | if (lastChild) this.children.splice(0, 0, lastChild); |
| 208 | this.updateBorders(); |
| 209 | } |
| 210 | |
| 211 | isBorderInSubPortion(index: number, after = false): boolean { |
| 212 | let portionIndex = 0; |
no test coverage detected