-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (36 loc) · 1.21 KB
/
index.html
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
37
38
39
<!DOCTYPE html>
<html>
<head>
<script data-require="[email protected]" data-semver="1.11.0" src="//cdnjs.cloudflare.com/ajax/libs/jquery/1.11.0/jquery.js"></script>
<script data-require="[email protected]" data-semver="1.10.4" src="//code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
<script data-require="[email protected]" data-semver="1.2.16" src="https://code.angularjs.org/1.2.16/angular.js"></script>
<script src="multisortable.js"></script>
<link rel="stylesheet" type="text/css" href="//code.jquery.com/ui/1.10.4/themes/redmond/jquery-ui.css">
<link rel="stylesheet" href="style.css" />
</head>
<body ng-app>
<ul id='listA' class='list'>
<li><span>A</span><span>A</span></li>
<li>B</li>
<li>C</li>
<li>B</li>
<li>C</li>
<li>B</li>
<li>C</li><li>B</li>
<li>C</li>
</ul>
<ul id='listB' class='list'>
<li>A</li>
<li>B</li>
<li>C</li>
</ul>
<!-- <div ng-controller="SortableCTRL">
<ul id="listA">
<li ng-repeat="item in sortableArray" ng-bind="item"></li>
</ul>
<hr>
<pre ng-bind="sortableArray|json"></pre>
</div>-->
<script src="script.js"></script>
</body>
</html>