call the user resize (so they can do extra work) else our build in version
(el: GridItemHTMLElement)
| 1707 | |
| 1708 | /** call the user resize (so they can do extra work) else our build in version */ |
| 1709 | private resizeToContentCBCheck(el: GridItemHTMLElement) { |
| 1710 | if (GridStack.resizeToContentCB) GridStack.resizeToContentCB(el); |
| 1711 | else this.resizeToContent(el); |
| 1712 | } |
| 1713 | |
| 1714 | /** |
| 1715 | * Rotate widgets by swapping their width and height. This is typically called when the user presses 'r' during dragging. |
no test coverage detected