52a62f2b8d
UI to accompany the new ACLs APIs
11 lines
231 B
JavaScript
11 lines
231 B
JavaScript
export default function(el, name) {
|
|
let sibling = el;
|
|
while ((sibling = sibling.nextSibling)) {
|
|
if (sibling.nodeType === 1) {
|
|
if (sibling.nodeName.toLowerCase() === name) {
|
|
return sibling;
|
|
}
|
|
}
|
|
}
|
|
}
|