Skip to content

Commit

Permalink
Fixes #18838, Dojo Drag and Drop does not work on specifically Window…
Browse files Browse the repository at this point in the history
…s 10 IE11

(cherry picked from commit c72fe98)
  • Loading branch information
vansimke committed Sep 6, 2016
1 parent 2c0af68 commit cb2f82c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dnd/Manager.js
Expand Up @@ -22,8 +22,8 @@ var Manager = declare("dojo.dnd.Manager", [Evented], {
},

// avatar's offset from the mouse
OFFSET_X: has("touch") ? 0 : 16,
OFFSET_Y: has("touch") ? -64 : 16,
OFFSET_X: has("touch") ? 4 : 16,
OFFSET_Y: has("touch") ? 4 : 16,

// methods
overSource: function(source){
Expand Down

0 comments on commit cb2f82c

Please sign in to comment.