Skip to content

Instantly share code, notes, and snippets.

@drewbrokke
Created August 14, 2014 21:00
Show Gist options
  • Save drewbrokke/6bdf04f949223a347abd to your computer and use it in GitHub Desktop.
Save drewbrokke/6bdf04f949223a347abd to your computer and use it in GitHub Desktop.
/**
* Handler for the mousedown DOM event
* @private
* @method _defMouseDownFn
* @param {EventFacade} e The Event
*/
_defMouseDownFn: function(e) {
var instance = this;
A.DD.Drag.superclass._defMouseDownFn.apply(this, arguments);
instance._clickTimeout = A.later(0, instance, instance._timeoutCheck);
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment