You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Starts observing the children of the base element for changes to the given {@linkcode selector} according to the set {@linkcode options}
158
158
* @param selector The selector to observe
@@ -161,16 +161,24 @@ export class SelectorObserver {
161
161
* @param [options.all] Whether to use `querySelectorAll()` instead - default is false
162
162
* @param [options.continuous] Whether to call the listener continuously instead of just once - default is false
163
163
* @param [options.debounce] Whether to debounce the listener to reduce calls to `querySelector` or `querySelectorAll` - set undefined or <=0 to disable (default)
164
+
* @returns Returns a function that can be called to remove this listener more easily
0 commit comments