mirror of
https://gh.wpcy.net/https://github.com/elementor/one-click-accessibility.git
synced 2026-04-24 09:06:48 +08:00
7 lines
222 B
JavaScript
7 lines
222 B
JavaScript
import { removeExistingFocus } from '@ea11y-apps/scanner/utils/focus-on-element';
|
|
|
|
export const closeWidget = (widget) => {
|
|
removeExistingFocus();
|
|
widget.remove();
|
|
document.body.style.removeProperty('margin-right');
|
|
};
|