aboutsummaryrefslogtreecommitdiffstats
path: root/ui/ui.sortable.js
diff options
context:
space:
mode:
authorPaul Bakaus <paul.bakaus@googlemail.com>2008-09-02 14:30:11 +0000
committerPaul Bakaus <paul.bakaus@googlemail.com>2008-09-02 14:30:11 +0000
commitb95772ef09e0ae73f1fec1821e16a7e1874c7181 (patch)
treebbe27276914c6a3e4e5d51b128406b46536a6fa9 /ui/ui.sortable.js
parent1e59121b1e97709327225b83530101d82778032c (diff)
downloadjquery-ui-b95772ef09e0ae73f1fec1821e16a7e1874c7181.tar.gz
jquery-ui-b95772ef09e0ae73f1fec1821e16a7e1874c7181.zip
sortable: fixed toArray method
Diffstat (limited to 'ui/ui.sortable.js')
-rw-r--r--ui/ui.sortable.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/ui.sortable.js b/ui/ui.sortable.js
index 346fd2635..8a84405eb 100644
--- a/ui/ui.sortable.js
+++ b/ui/ui.sortable.js
@@ -82,7 +82,7 @@ $.widget("ui.sortable", $.extend({}, $.ui.mouse, {
var items = this._getItemsAsjQuery(o && o.connected);
var ret = [];
- items.each(function() { ret.push($(this).attr(attr || 'id')); });
+ items.each(function() { ret.push($(this).attr(o.attr || 'id')); });
return ret;
},