Skip to content

Commit 26c8f30

Browse files
committed
fix(range): Clicking Line For Range Causes Drag Button To Follow Mouse, close #779
1 parent 295fde8 commit 26c8f30

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

js/utils/tap.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
var ele = target.control || target;
99

10-
if(ele.disabled || ele.type === 'file') return;
10+
if(ele.disabled || ele.type === 'file' || ele.type === 'range') return;
1111

1212
console.debug('tapElement', ele.tagName, ele.className);
1313

0 commit comments

Comments
 (0)