aboutsummaryrefslogtreecommitdiffstats
path: root/library/Sortable/tests/dual-list.html
diff options
context:
space:
mode:
Diffstat (limited to 'library/Sortable/tests/dual-list.html')
-rw-r--r--library/Sortable/tests/dual-list.html34
1 files changed, 34 insertions, 0 deletions
diff --git a/library/Sortable/tests/dual-list.html b/library/Sortable/tests/dual-list.html
new file mode 100644
index 000000000..6d7e15b9b
--- /dev/null
+++ b/library/Sortable/tests/dual-list.html
@@ -0,0 +1,34 @@
+<!DOCTYPE html>
+<html>
+<head>
+ <title></title>
+ <link rel="stylesheet" type="text/css" href="./style.css">
+</head>
+<body>
+
+<div class="list half" id="list1">
+ <div>Item 1.1</div>
+ <div>Item 1.2</div>
+ <div>Item 1.3</div>
+ <div>Item 1.4</div>
+ <div>Item 1.5</div>
+</div>
+
+<div class="list half" id="list2">
+ <div>Item 2.1</div>
+ <div>Item 2.2</div>
+ <div>Item 2.3</div>
+ <div>Item 2.4</div>
+ <div>Item 2.5</div>
+</div>
+
+
+<script src="../Sortable.js"></script>
+
+<script type="text/javascript">
+ new Sortable(document.getElementById('list1'), { group: 'shared' });
+ new Sortable(document.getElementById('list2'), { });
+</script>
+
+</body>
+</html>