Skip to content
This repository has been archived by the owner on Aug 10, 2024. It is now read-only.

Commit

Permalink
Dblclk fix
Browse files Browse the repository at this point in the history
Click events were ignored when no double click event handler had been registrated.
  • Loading branch information
bartbutenaers authored Aug 30, 2021
1 parent db1267d commit 8e7070c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions svg_graphics.js
Original file line number Diff line number Diff line change
Expand Up @@ -563,9 +563,9 @@ module.exports = function(RED) {
$scope.clickTimer = null;
}, 400);
}

return;
}

return;
}
}

Expand Down Expand Up @@ -714,9 +714,9 @@ module.exports = function(RED) {
$scope.clickJsTimer = null;
}, 400);
}

return;
}

return;
}
}

Expand Down

0 comments on commit 8e7070c

Please sign in to comment.