-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.php
More file actions
36 lines (35 loc) · 1.48 KB
/
index.php
File metadata and controls
36 lines (35 loc) · 1.48 KB
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
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html>
<head>
<title>SortableJS</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css" integrity="sha384-GJzZqFGwb1QTTN6wy59ffF1BuGJpLSa9DkKMp0DgiMDm4iYMj70gZWKYbI706tWS" crossorigin="anonymous">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="st/nathan.css">
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta name="viewport" content="width=device-width, initial-scale=0.5"/>
</head>
<body>
<div class="container">
<div id="simple-list" class="row">
<h4 class="col-12">Drag and Drop</h4>
<div id="example1" class="list-group col">
<div id="1" class="list-group-item">Item 1</div>
<div id="2" class="list-group-item">Item 2</div>
<div id="3" class="list-group-item">Item 3</div>
<div id="4" class="list-group-item">Item 4</div>
<div id="5" class="list-group-item">Item 5</div>
<div id="6" class="list-group-item">Item 6</div>
<div id="7" class="list-group-item">Item 7</div>
<div id="8" class="list-group-item">Item 8</div>
</div>
</div>
<!-- Latest Sortable -->
<script src="./Sortable.js"></script>
<script src="st/nathan.js"></script>
</body>
</html>
<!---
Check and see if you can figure this out.
https://github.com/SortableJS/Sortable/issues/1169
--->