19 lines
401 B
TypeScript
19 lines
401 B
TypeScript
/*
|
|
* https://github.com/morethanwords/tweb
|
|
* Copyright (C) 2019-2021 Eduard Kuzmenko
|
|
* https://github.com/morethanwords/tweb/blob/master/LICENSE
|
|
*/
|
|
|
|
export default function findUpAsChild(el: any, parent: any) {
|
|
if(el.parentElement === parent) return el;
|
|
|
|
while(el.parentElement) {
|
|
el = el.parentElement;
|
|
if(el.parentElement === parent) {
|
|
return el;
|
|
}
|
|
}
|
|
|
|
return null;
|
|
}
|