X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/c930e9176a5a85509c5b0230e2bff5c22a591432..refs/tags/3.1.0:/docs/source/StatusProxy.html diff --git a/docs/source/StatusProxy.html b/docs/source/StatusProxy.html index d6167018..080edbfb 100644 --- a/docs/source/StatusProxy.html +++ b/docs/source/StatusProxy.html @@ -1,5 +1,6 @@ + The source code @@ -138,8 +139,8 @@ Ext.dd.StatusProxy.prototype = { * Causes the proxy to return to its position of origin via an animation. Should be called after an * invalid drop operation by the item being dragged. * @param {Array} xy The XY position of the element ([x, y]) - * @param {Function} callback The function to call after the repair is complete - * @param {Object} scope The scope in which to execute the callback + * @param {Function} callback The function to call after the repair is complete. + * @param {Object} scope The scope (this reference) in which the callback function is executed. Defaults to the browser window. */ repair : function(xy, callback, scope){ this.callback = callback; @@ -168,6 +169,10 @@ Ext.dd.StatusProxy.prototype = { } this.callback = null; this.scope = null; + }, + + destroy: function(){ + Ext.destroy(this.ghost, this.el); } };