diff options
author | Chi Cheng <cloudream@gmail.com> | 2008-08-26 12:29:55 +0000 |
---|---|---|
committer | Chi Cheng <cloudream@gmail.com> | 2008-08-26 12:29:55 +0000 |
commit | fa14a0a83c29782787590368b5f571b3c4343ecd (patch) | |
tree | 2f4aba57031a902088d32599688369ef6556eef4 /ui/ui.sortable.js | |
parent | 3ac690bcdebfcfc9356998198e9c2e7ee647c316 (diff) | |
download | jquery-ui-fa14a0a83c29782787590368b5f571b3c4343ecd.tar.gz jquery-ui-fa14a0a83c29782787590368b5f571b3c4343ecd.zip |
Sortable: fix wrong patameter in toArray
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 7880a2b83..346fd2635 100644 --- a/ui/ui.sortable.js +++ b/ui/ui.sortable.js @@ -77,7 +77,7 @@ $.widget("ui.sortable", $.extend({}, $.ui.mouse, { }, - toArray: function(attr) { + toArray: function(o) { var items = this._getItemsAsjQuery(o && o.connected); var ret = []; |