blob: 037e272d0115bc151115de819093066390f8d5d5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
<!DOCTYPE html>
<html>
<head>
<title></title>
<link rel="stylesheet" type="text/css" href="./style.css">
</head>
<body>
<div class="list" id="list1">
<div><span class="handle">::</span>Item 1.1</div>
<div><span class="handle">::</span>Item 1.2</div>
<div><span class="handle">::</span>Item 1.3</div>
<div><span class="handle">::</span>Item 1.4</div>
<div><span class="handle">::</span>Item 1.5</div>
</div>
<script src="../Sortable.js"></script>
<script type="text/javascript">
new Sortable(document.getElementById('list1'), { handle: '.handle' });
</script>
</body>
</html>
|