Skip to content
Snippets Groups Projects
  • Daniel Calviño Sánchez's avatar
    bb64b6f8
    Add callback to clean up after misbehaved drag and drop events · bb64b6f8
    Daniel Calviño Sánchez authored
    
    The jQuery Plugin triggers the "dragover" callback when the browser
    triggers the "dragover" event and the types in their DataTransfer
    include a "Files" item. It also triggers the "drop" callback when the
    browser triggers the "drop" event and the list of files in its
    DataTransfer is not empty.
    
    Unfortunately some browsers may trigger "dragover" events with a
    DataTransfer that includes a "Files" item and then trigger a "drop"
    event with an empty list of files. When that happens the actions
    performed in the "dragXXX" callbacks could be left hanging if they were
    expected to be finished in the "drop" callback (for example, if the drop
    zone was highlighted during the drag to be then restored when the file
    was finally dropped). This commit adds the "dropnofiles" callback to be
    able to handle those situations.
    
    Signed-off-by: default avatarDaniel Calviño Sánchez <danxuliu@gmail.com>
    bb64b6f8
    History
    Add callback to clean up after misbehaved drag and drop events
    Daniel Calviño Sánchez authored
    
    The jQuery Plugin triggers the "dragover" callback when the browser
    triggers the "dragover" event and the types in their DataTransfer
    include a "Files" item. It also triggers the "drop" callback when the
    browser triggers the "drop" event and the list of files in its
    DataTransfer is not empty.
    
    Unfortunately some browsers may trigger "dragover" events with a
    DataTransfer that includes a "Files" item and then trigger a "drop"
    event with an empty list of files. When that happens the actions
    performed in the "dragXXX" callbacks could be left hanging if they were
    expected to be finished in the "drop" callback (for example, if the drop
    zone was highlighted during the drag to be then restored when the file
    was finally dropped). This commit adds the "dropnofiles" callback to be
    able to handle those situations.
    
    Signed-off-by: default avatarDaniel Calviño Sánchez <danxuliu@gmail.com>