mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-24 14:50:50 +01:00
9 lines
261 B
JavaScript
9 lines
261 B
JavaScript
|
function delegate(eventType, selector, handler, root) {
|
||
|
(root || document).addEventListener(eventType, function(event) {
|
||
|
const target = event.target.closest(selector);
|
||
|
if (target) {
|
||
|
handler.call(this, event);
|
||
|
}
|
||
|
});
|
||
|
}
|