aboutsummaryrefslogtreecommitdiffstats
path: root/ui/ui.draggable.js
diff options
context:
space:
mode:
authorPaul Bakaus <paul.bakaus@googlemail.com>2009-01-09 14:08:32 +0000
committerPaul Bakaus <paul.bakaus@googlemail.com>2009-01-09 14:08:32 +0000
commita6471b1705bb39eb8311741d309539f5101b6f78 (patch)
treeb6bde09c301bcf4846292542c775f62e428faa48 /ui/ui.draggable.js
parent3bec130f7bbcd97311bb7dd8c78dbc14c8987b19 (diff)
downloadjquery-ui-a6471b1705bb39eb8311741d309539f5101b6f78.tar.gz
jquery-ui-a6471b1705bb39eb8311741d309539f5101b6f78.zip
draggable: removed unneeded comment block
sortable: fixed sort callback, merged position fixes from draggables
Diffstat (limited to 'ui/ui.draggable.js')
-rw-r--r--ui/ui.draggable.js5
1 files changed, 0 insertions, 5 deletions
diff --git a/ui/ui.draggable.js b/ui/ui.draggable.js
index a1ffd20e7..cbc686575 100644
--- a/ui/ui.draggable.js
+++ b/ui/ui.draggable.js
@@ -123,11 +123,6 @@ $.widget("ui.draggable", $.extend({}, $.ui.mouse, {
//Compute the helpers position
this.position = this._generatePosition(event);
this.positionAbs = this._convertPositionTo("absolute");
-
- /*
- * - Position constraining -
- * Constrain the position to a mix of grid, containment.
- */
//Call plugins and callbacks and use the resulting position if something is returned
if(!noPropagation) this.position = this._trigger("drag", event) || this.position;