mirror of
https://gh.wpcy.net/https://github.com/elementor/one-click-accessibility.git
synced 2026-04-26 23:09:31 +08:00
8 lines
280 B
JavaScript
8 lines
280 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');
|
|
document.body.prepend(window.ea11yScannerData.adminBar);
|
|
};
|