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 0ef4d3a commit b131ca8Copy full SHA for b131ca8
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "vue-drag-resize",
3
- "version": "1.3.1",
+ "version": "1.3.2",
4
"description": "Vue Component for resize and drag elements",
5
"author": "Kirill Murashov <me@kirillmurashov.com>",
6
"main": "dist/index.js",
src/components/vue-drag-resize.js
@@ -251,7 +251,7 @@ export default {
251
this.active = true;
252
}
253
254
- if (ev.button !== 0) {
+ if (ev.button && ev.button !== 0) {
255
return
256
257
0 commit comments