aboutsummaryrefslogtreecommitdiff
path: root/static/development-bundle/demos/sortable/delay-start.html
diff options
context:
space:
mode:
Diffstat (limited to 'static/development-bundle/demos/sortable/delay-start.html')
-rw-r--r--static/development-bundle/demos/sortable/delay-start.html64
1 files changed, 64 insertions, 0 deletions
diff --git a/static/development-bundle/demos/sortable/delay-start.html b/static/development-bundle/demos/sortable/delay-start.html
new file mode 100644
index 0000000..636b743
--- /dev/null
+++ b/static/development-bundle/demos/sortable/delay-start.html
@@ -0,0 +1,64 @@
1<!doctype html>
2<html lang="en">
3<head>
4 <title>jQuery UI Sortable - Delay start</title>
5 <link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" />
6 <script type="text/javascript" src="../../jquery-1.3.2.js"></script>
7 <script type="text/javascript" src="../../ui/ui.core.js"></script>
8 <script type="text/javascript" src="../../ui/ui.sortable.js"></script>
9 <link type="text/css" href="../demos.css" rel="stylesheet" />
10 <style type="text/css">
11 #sortable1, #sortable2 { list-style-type: none; margin: 0; padding: 0; margin-bottom: 15px;zoom: 1; }
12 #sortable1 li, #sortable2 li { margin: 0 5px 5px 5px; padding: 5px; font-size: 1.2em; width: 95%; }
13 </style>
14 <script type="text/javascript">
15 $(function() {
16 $("#sortable1").sortable({
17 delay: 300
18 });
19
20 $("#sortable2").sortable({
21 distance: 15
22 });
23
24 $("li").disableSelection();
25 });
26 </script>
27</head>
28<body>
29<div class="demo">
30
31<h3 class="docs">Time delay of 300ms:</h3>
32
33<ul id="sortable1">
34 <li class="ui-state-default">Item 1</li>
35 <li class="ui-state-default">Item 2</li>
36 <li class="ui-state-default">Item 3</li>
37 <li class="ui-state-default">Item 4</li>
38</ul>
39
40<h3 class="docs">Distance delay of 15px:</h3>
41
42<ul id="sortable2">
43 <li class="ui-state-default">Item 1</li>
44 <li class="ui-state-default">Item 2</li>
45 <li class="ui-state-default">Item 3</li>
46 <li class="ui-state-default">Item 4</li>
47</ul>
48
49</div><!-- End demo -->
50
51<div class="demo-description">
52
53<p>
54 Prevent accidental sorting either by delay (time) or distance. Set a number of
55 milliseconds the element needs to be dragged before sorting starts
56 with the <code>delay</code> option. Set a distance in pixels the element
57 needs to be dragged before sorting starts with the <code>distance</code>
58 option.
59</p>
60
61</div><!-- End demo-description -->
62
63</body>
64</html>