diff options
Diffstat (limited to 'demos/tabs')
-rw-r--r-- | demos/tabs/sortable.html | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/demos/tabs/sortable.html b/demos/tabs/sortable.html index ba8196d71..c3e882791 100644 --- a/demos/tabs/sortable.html +++ b/demos/tabs/sortable.html @@ -13,7 +13,13 @@ <link rel="stylesheet" href="../demos.css"> <script> $(function() { - $( "#tabs" ).tabs().find( ".ui-tabs-nav" ).sortable({ axis: "x" }); + var tabs = $( "#tabs" ).tabs(); + tabs.find( ".ui-tabs-nav" ).sortable({ + axis: "x", + stop: function() { + tabs.tabs( "refresh" ); + } + }); }); </script> </head> |