X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/3789b528d8dd8aad4558e38e22d775bcab1cbd36..6746dc89c47ed01b165cc1152533605f97eb8e8d:/docs/source/DragTracker.html diff --git a/docs/source/DragTracker.html b/docs/source/DragTracker.html index 5097e8bf..7adf88a8 100644 --- a/docs/source/DragTracker.html +++ b/docs/source/DragTracker.html @@ -343,9 +343,6 @@ Ext.define('Ext.dd.DragTracker', { // is lifted if the mouseout happens *during* a drag. this.mouseIsDown = false; - // Remove flag from event singleton - delete e.dragTracked; - // If we mouseouted the el *during* the drag, the onMouseOut method will not have fired. Ensure that it gets processed. if (this.mouseIsOut) { this.mouseIsOut = false; @@ -375,6 +372,9 @@ Ext.define('Ext.dd.DragTracker', { } // Private property calculated when first required and only cached during a drag delete this._constrainRegion; + + // Remove flag from event singleton. Using "Ext.EventObject" here since "endDrag" is called directly in some cases without an "e" param + delete Ext.EventObject.dragTracked; }, triggerStart: function(e) {