aboutsummaryrefslogtreecommitdiffstats
path: root/library/Sortable/tests/single-list.html
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2021-08-03 07:12:35 +0000
committerMario <mario@mariovavti.com>2021-08-03 07:12:35 +0000
commitcddc0217724f1a7661014d50e4c940e623a0c2dc (patch)
treef24595d659adbb7d1e5d2e8e6dcd829b093887bb /library/Sortable/tests/single-list.html
parent571bae9d1c07bb08270163a314c91c138b42e62f (diff)
downloadvolse-hubzilla-cddc0217724f1a7661014d50e4c940e623a0c2dc.tar.gz
volse-hubzilla-cddc0217724f1a7661014d50e4c940e623a0c2dc.tar.bz2
volse-hubzilla-cddc0217724f1a7661014d50e4c940e623a0c2dc.zip
Apps drag and drop feature
Diffstat (limited to 'library/Sortable/tests/single-list.html')
-rw-r--r--library/Sortable/tests/single-list.html25
1 files changed, 25 insertions, 0 deletions
diff --git a/library/Sortable/tests/single-list.html b/library/Sortable/tests/single-list.html
new file mode 100644
index 000000000..30b984b0d
--- /dev/null
+++ b/library/Sortable/tests/single-list.html
@@ -0,0 +1,25 @@
+<!DOCTYPE html>
+<html>
+<head>
+ <title></title>
+ <link rel="stylesheet" type="text/css" href="./style.css">
+</head>
+<body>
+
+<div class="list" 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>
+
+
+<script src="../Sortable.js"></script>
+
+<script type="text/javascript">
+ new Sortable(document.getElementById('list1'));
+</script>
+
+</body>
+</html>