Remove jQuery from the Unicode escape button (#29369)

- Switched to plain JavaScript
- Tested the Unicode escape button functionality and it works as before

# Demo using JavaScript without jQuery

![action](664f0ced-876b-4cb7-a668-bd62169fc843)

---------

Signed-off-by: Yarden Shoham <git@yardenshoham.com>
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
(cherry picked from commit c86d033a3ec0514efcd9524d03dce1b6551e487f)
This commit is contained in:
Yarden Shoham 2024-02-24 21:11:51 +02:00 committed by Earl Warren
parent 003a358949
commit 757567d3bd
No known key found for this signature in database
GPG key ID: 0579CB2928A78A00
2 changed files with 25 additions and 25 deletions

View file

@ -51,6 +51,10 @@ export function isElemHidden(el) {
return res[0];
}
export function queryElemSiblings(el, selector) {
return Array.from(el.parentNode.children).filter((child) => child !== el && child.matches(selector));
}
export function onDomReady(cb) {
if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', cb);