lazy-widgets
Version:
Typescript retained mode GUI for the HTML canvas API
15 lines • 466 B
JavaScript
import { WidgetEvent, PropagationModel } from './WidgetEvent.js';
/**
* A generic event that does not propagate in a UI tree; it must be handled at
* the dispatch origin of the event. This is an abstract class and must be
* implemented in child classes.
*
* @category Event
*/
export class StickyEvent extends WidgetEvent {
constructor() {
super();
this.propagation = PropagationModel.Sticky;
}
}
//# sourceMappingURL=StickyEvent.js.map