mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-21 09:38:01 +02:00
10 lines
281 B
TypeScript
10 lines
281 B
TypeScript
|
/* eslint-disable import/prefer-default-export */
|
||
|
|
||
|
export const findParentElementByClassName = (element: any, parentClassName: string) => {
|
||
|
while (element) {
|
||
|
if (element.classList.contains(parentClassName)) return element;
|
||
|
element = element.parentElement;
|
||
|
}
|
||
|
return null;
|
||
|
};
|