svg.draggable.js
svg.draggable.js copied to clipboard
click on the draggable element can't trigger the blur event
<body>
<input type="text" id="input">
<div id="canvas" />
<script>
var draw = SVG().addTo('#canvas').size(300, 300)
var rect = draw.rect(100, 100).attr({
fill: '#f06'
})
.on('mousedown touchstart', e => console.log('mousedown'))
.draggable()
</script>
</body>
click on the rect element can't trigger the blur event of the
And what is your issue?
And what is your issue?
Is this a bug or feature