Skip to content

Commit e6fe21c

Browse files
Merge pull request #40 from tpraxl/fix/dragstop-not-fired-in-chrome-touchmode
Fix dragstop and resizestop not fired
2 parents a3e8289 + cb4718b commit e6fe21c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/components/vue-drag-resize.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
<div class="vdr" :style="style"
22
:class="active || isActive ? 'active' : 'inactive'"
33
@mousedown="bodyDown($event)"
4-
@touchstart="bodyDown($event)">
4+
@touchstart="bodyDown($event)"
5+
@touchend="up($event)">
56
<slot></slot>
67
<div
78
v-for="stick in sticks"

0 commit comments

Comments
 (0)