diff options
author | Scott González <scott.gonzalez@gmail.com> | 2013-01-31 09:16:54 -0500 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2013-01-31 09:16:54 -0500 |
commit | a36012ad974edc09645962ab43c7f52f2b41c0ad (patch) | |
tree | ee06ba86035fc7664c4c90a0c1a94d4518477004 /demos | |
parent | c193a0ce17b30188576fcdb9e4b2222ce7f02f47 (diff) | |
download | jquery-ui-a36012ad974edc09645962ab43c7f52f2b41c0ad.tar.gz jquery-ui-a36012ad974edc09645962ab43c7f52f2b41c0ad.zip |
Sortable demo: Fix use of tabs API.
Diffstat (limited to 'demos')
-rw-r--r-- | demos/sortable/connect-lists-through-tabs.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/sortable/connect-lists-through-tabs.html b/demos/sortable/connect-lists-through-tabs.html index 07906d5bf..10ac6e2f0 100644 --- a/demos/sortable/connect-lists-through-tabs.html +++ b/demos/sortable/connect-lists-through-tabs.html @@ -30,7 +30,7 @@ .find( ".connectedSortable" ); ui.draggable.hide( "slow", function() { - $tabs.tabs( "select", $tab_items.index( $item ) ); + $tabs.tabs( "option", "active", $tab_items.index( $item ) ); $( this ).appendTo( $list ).show( "slow" ); }); } |