aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorScott Jehl <scott@scottjehl.com>2009-02-20 18:38:21 +0000
committerScott Jehl <scott@scottjehl.com>2009-02-20 18:38:21 +0000
commit1fffa645b6c0c7cdcf607b1e5bdac748944ba793 (patch)
tree405730c87a58b0b59d362657c0f88be1bd6e06b0
parent352b081a3944b7f8dd523ebe302ed38da7093efa (diff)
downloadjquery-ui-1fffa645b6c0c7cdcf607b1e5bdac748944ba793.tar.gz
jquery-ui-1fffa645b6c0c7cdcf607b1e5bdac748944ba793.zip
restrict sort to x axis
-rw-r--r--demos/tabs/sortable.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/tabs/sortable.html b/demos/tabs/sortable.html
index 5cfe9e92e..1b0d458bd 100644
--- a/demos/tabs/sortable.html
+++ b/demos/tabs/sortable.html
@@ -10,7 +10,7 @@
<link type="text/css" href="../demos.css" rel="stylesheet" />
<script type="text/javascript">
$(function() {
- $("#tabs").tabs().find(".ui-tabs-nav").sortable();
+ $("#tabs").tabs().find(".ui-tabs-nav").sortable({axis:'x'});
});
</script>
</head>