svg.draggable.js icon indicating copy to clipboard operation
svg.draggable.js copied to clipboard

click on the draggable element can't trigger the blur event

Open pyuyu opened this issue 4 years ago • 2 comments

<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

pyuyu avatar Mar 06 '21 04:03 pyuyu

And what is your issue?

Fuzzyma avatar Mar 06 '21 07:03 Fuzzyma

And what is your issue?

Is this a bug or feature

pyuyu avatar Mar 15 '21 13:03 pyuyu