r1597 - trunk/ui
r1597 - trunk/ui
Author: scott.gonzalez
Date: Mon Jan 12 18:13:58 2009
New Revision: 1597
Modified:
trunk/ui/ui.draggable.js
Log:
Draggable: Removed unnecessary setting of this.positionAbs in _trigger.
Modified: trunk/ui/ui.draggable.js
==============================================================================
--- trunk/ui/ui.draggable.js (original)
+++ trunk/ui/ui.draggable.js Mon Jan 12 18:13:58 2009
@@ -370,7 +370,6 @@
_trigger: function(type, event) {
$.ui.plugin.call(this, type, [event, this._uiHash()]);
- if(type == "drag") this.positionAbs =
this._convertPositionTo("absolute"); //The absolute position has to be
recalculated after plugins
$.widget.prototype._trigger.call(this, type, event, this._uiHash());
return event.returnValue;
},