We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09faa7c commit c3d9bd0Copy full SHA for c3d9bd0
demos/tabs/sortable.html
@@ -13,7 +13,13 @@
13
<link rel="stylesheet" href="../demos.css">
14
<script>
15
$(function() {
16
- $( "#tabs" ).tabs().find( ".ui-tabs-nav" ).sortable({ axis: "x" });
+ var tabs = $( "#tabs" ).tabs();
17
+ tabs.find( ".ui-tabs-nav" ).sortable({
18
+ axis: "x",
19
+ stop: function() {
20
+ tabs.tabs( "refresh" );
21
+ }
22
+ });
23
});
24
</script>
25
</head>
0 commit comments