diff options
author | Scott González <scott.gonzalez@gmail.com> | 2009-01-13 02:13:58 +0000 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2009-01-13 02:13:58 +0000 |
commit | 99840f323e8fbd56378ad137185b076fe77fe257 (patch) | |
tree | 7d6bd62ceb71571fe4db4122d126caf960b09483 /ui/ui.draggable.js | |
parent | 877f03b8539c9db1ca9737725aaec58f065ea5b5 (diff) | |
download | jquery-ui-99840f323e8fbd56378ad137185b076fe77fe257.tar.gz jquery-ui-99840f323e8fbd56378ad137185b076fe77fe257.zip |
Draggable: Removed unnecessary setting of this.positionAbs in _trigger.
Diffstat (limited to 'ui/ui.draggable.js')
-rw-r--r-- | ui/ui.draggable.js | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ui/ui.draggable.js b/ui/ui.draggable.js index cbc686575..7aec8f964 100644 --- a/ui/ui.draggable.js +++ b/ui/ui.draggable.js @@ -370,7 +370,6 @@ $.widget("ui.draggable", $.extend({}, $.ui.mouse, { _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; }, |