Lines Matching refs:graphics
141 function setGraphicsTooltip(graphics, href) { argument
142 let tooltip = graphics.querySelector(":scope > title");
145 graphics.insertBefore(tooltip, graphics.firstChild);
151 function wireGraphicsLink(graphics, href, linkClass = "wikilink1") { argument
152 if (!graphics) {
156 if (graphics.dataset.bpmnioLinked !== "true") {
157 graphics.addEventListener("click", (event) => openDiagramLink(event, href));
158 graphics.addEventListener("keydown", (event) => {
168 graphics.setAttribute("tabindex", "0");
169 graphics.setAttribute("role", "link");
170 graphics.setAttribute("aria-label", href);
171 setGraphicsTooltip(graphics, href);
172 graphics.dataset.bpmnioLinked = "true";
173 graphics.classList.add("bpmnio-linked", linkClass);