mirror of
https://gh.wpcy.net/https://github.com/elementor/one-click-accessibility.git
synced 2026-04-26 04:45:19 +08:00
9 lines
360 B
JavaScript
9 lines
360 B
JavaScript
import { removeExistingFocus } from '@ea11y-apps/scanner/utils/focus-on-element';
|
|
|
|
export const closeWidget = (widget) => {
|
|
const isRTL = Boolean(window.ea11yScannerData?.isRTL);
|
|
removeExistingFocus();
|
|
widget.remove();
|
|
document.body.style.removeProperty(isRTL ? 'margin-left' : 'margin-right');
|
|
document.body.prepend(window.ea11yScannerData.adminBar);
|
|
};
|