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 67681c8 commit 43b399dCopy full SHA for 43b399d
modules/gpad/TFramePainter.mjs
@@ -47,7 +47,7 @@ function addDragHandler(_painter, arg) {
47
function makeResizeElements(group, handler) {
48
function addElement(cursor, d) {
49
let clname = 'js_' + cursor.replace(/[-]/g, '_'),
50
- elem = group.select('.' + clname);
+ elem = group.selectChild('.' + clname);
51
if (elem.empty()) elem = group.append('path').classed(clname, true);
52
elem.style('opacity', 0).style('cursor', cursor).attr('d', d);
53
if (handler) elem.call(handler);
0 commit comments