Commit 858d501 1 parent 6e00171 commit 858d501 Copy full SHA for 858d501
File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ export type SelectorOptionsCommon = {
28
28
continuous ?: boolean ;
29
29
/** Whether to debounce the listener to reduce calls to `querySelector` or `querySelectorAll` - set undefined or <=0 to disable (default) */
30
30
debounce ?: number ;
31
- /** The edge type of the debouncer - default is "queuedImmediate " - refer to {@linkcode Debouncer} for more info */
31
+ /** The edge type of the debouncer - default is "immediate " - refer to {@linkcode Debouncer} for more info */
32
32
debounceType ?: DebouncerType ;
33
33
} ;
34
34
@@ -91,7 +91,7 @@ export class SelectorObserver {
91
91
92
92
this . customOptions = {
93
93
defaultDebounce : defaultDebounce ?? 0 ,
94
- defaultDebounceType : defaultDebounceType ?? "queuedImmediate " ,
94
+ defaultDebounceType : defaultDebounceType ?? "immediate " ,
95
95
disableOnNoListeners : disableOnNoListeners ?? false ,
96
96
enableOnAddListener : enableOnAddListener ?? true ,
97
97
} ;
You can’t perform that action at this time.
0 commit comments