diff options
author | Mario <mario@mariovavti.com> | 2021-08-03 07:12:35 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-08-03 07:12:35 +0000 |
commit | cddc0217724f1a7661014d50e4c940e623a0c2dc (patch) | |
tree | f24595d659adbb7d1e5d2e8e6dcd829b093887bb /library/Sortable/tests/dual-list.html | |
parent | 571bae9d1c07bb08270163a314c91c138b42e62f (diff) | |
download | volse-hubzilla-cddc0217724f1a7661014d50e4c940e623a0c2dc.tar.gz volse-hubzilla-cddc0217724f1a7661014d50e4c940e623a0c2dc.tar.bz2 volse-hubzilla-cddc0217724f1a7661014d50e4c940e623a0c2dc.zip |
Apps drag and drop feature
Diffstat (limited to 'library/Sortable/tests/dual-list.html')
-rw-r--r-- | library/Sortable/tests/dual-list.html | 34 |
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> |