We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 008c881 commit 48a8943Copy full SHA for 48a8943
ip.html
@@ -853,7 +853,8 @@ <h3>ip.wtf API</h3>
853
854
for (let el of [...document.querySelectorAll(".dblselect")]) {
855
el.addEventListener("dblclick", e => {
856
- window.getSelection().selectAllChildren(el);
+ let bel = el.querySelector("b");
857
+ window.getSelection().selectAllChildren(bel ? bel : el);
858
e.preventDefault();
859
});
860
}
0 commit comments