@deltares/fews-ssd-requests
Version:
Library for making requests to the FEWS SSD webservice
12 lines • 551 B
JavaScript
import { FEWS_NAMESPACE } from "../response/FEWS_NAME_SPACE.js";
export function addLeftClickAction(svg, clickCallback) {
svg.querySelectorAll('*').forEach(function (el) {
// clickable elements get a pointer cursor, the others (like text) get the default cursor
if (el.hasAttributeNS(FEWS_NAMESPACE, 'click')) {
el.addEventListener('click', clickCallback);
el.style.cursor = 'pointer';
el.setAttribute('pointer-events', 'auto');
}
});
}
//# sourceMappingURL=addLeftClickAction.js.map