Function on_click_outside_with_options

Source
pub fn on_click_outside_with_options<El, M, F>(
    target: El,
    handler: F,
    options: OnClickOutsideOptions,
) -> impl FnOnce() + Clone + Send + Sync
where El: IntoElementMaybeSignal<EventTarget, M>, F: FnMut(Event) + Clone + 'static,
Expand description

Version of on_click_outside that takes an OnClickOutsideOptions. See on_click_outside for more details.