Event: HTML5 drop events inherit from MouseEvent

Fixes gh-2009
Ref gh-1925
This commit is contained in:
Dave Methvin
2015-01-14 14:34:09 -05:00
parent 74ae544483
commit d7e5fcee51
2 changed files with 14 additions and 7 deletions

View File

@@ -14,7 +14,7 @@ define([
var
rkeyEvent = /^key/,
rmouseEvent = /^(?:mouse|pointer|contextmenu|drag)|click/,
rmouseEvent = /^(?:mouse|pointer|contextmenu|drag|drop)|click/,
rfocusMorph = /^(?:focusinfocus|focusoutblur)$/,
rtypenamespace = /^([^.]*)(?:\.(.+)|)/;