mirror of
https://github.com/status-im/consul.git
synced 2025-01-09 05:23:04 +00:00
7d89e519a2
UI to accompany the new ACLs APIs
11 lines
241 B
JavaScript
11 lines
241 B
JavaScript
export default function(sel, el) {
|
|
// basic DOM closest utility to cope with no support
|
|
// TODO: instead of degrading gracefully
|
|
// add a while polyfill for closest
|
|
try {
|
|
return el.closest(sel);
|
|
} catch (e) {
|
|
return;
|
|
}
|
|
}
|