diff options
author | Paul Bakaus <paul.bakaus@googlemail.com> | 2008-09-02 14:30:11 +0000 |
---|---|---|
committer | Paul Bakaus <paul.bakaus@googlemail.com> | 2008-09-02 14:30:11 +0000 |
commit | b95772ef09e0ae73f1fec1821e16a7e1874c7181 (patch) | |
tree | bbe27276914c6a3e4e5d51b128406b46536a6fa9 /ui/ui.sortable.js | |
parent | 1e59121b1e97709327225b83530101d82778032c (diff) | |
download | jquery-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.js | 2 |
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; }, |