* Dispatches window resize events if the ResizeHelper is manually handling a resize loop. * This is the callback for the aspectRatio property change and is intended to only be called in * specific environments or when enabling/disableing the ResizeHelper. * @memberof ResizeHelper * @priv
()
| 89 | * @private |
| 90 | */ |
| 91 | resize() { |
| 92 | window.dispatchEvent(this.resizeEvent ? this.resizeEvent : new Event('resize')); |
| 93 | } |
| 94 | |
| 95 | /** |
| 96 | * Handler for window resize events. Forwards this event to the scale manager if enabled. |
no outgoing calls
no test coverage detected