(flag: boolean)
| 12 | } |
| 13 | |
| 14 | setXResizing(flag: boolean) { |
| 15 | if (flag) { |
| 16 | this.addState('x-resizing'); |
| 17 | } else { |
| 18 | this.removeState('x-resizing'); |
| 19 | } |
| 20 | } |
| 21 | |
| 22 | setYResizing(flag: boolean) { |
| 23 | if (flag) { |
nothing calls this directly
no test coverage detected