DuyTa's picture
Upload folder using huggingface_hub
bc20498 verified
raw
history blame
396 Bytes
// These are typically used in conjunction with noevent to ensure that we can
// preventDefault on the event.
export const nonpassive = {passive: false};
export const nonpassivecapture = {capture: true, passive: false};
export function nopropagation(event) {
event.stopImmediatePropagation();
}
export default function(event) {
event.preventDefault();
event.stopImmediatePropagation();
}