UNPKG

bootstrap-modal-backdrop

Version:

Backdrop options for a responsive popup with Bootstrap 5. Prevent close on click outside with static backdrop, remove backdrop, enable interactivity & more.

17 lines (14 loc) 298 B
/* eslint-disable */ export function get(element) { return getComputedStyle(element); } export function set(element, obj) { for (const key in obj) { let val = obj[key]; if (typeof val === 'number') { val = `${val}px`; } element.style[key] = val; } return element; }