Skip to content

Commit 2ec06ae

Browse files
Jonas von AndrianJonas von Andrian
authored andcommitted
Update pages. See main branch for changes
1 parent 7902fee commit 2ec06ae

File tree

13 files changed

+3068
-2130
lines changed

13 files changed

+3068
-2130
lines changed

css/application.css

Lines changed: 903 additions & 876 deletions
Large diffs are not rendered by default.

css/jquery-sortable.css

Lines changed: 0 additions & 127 deletions
This file was deleted.

debug.html

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>jQuery Sortable</title>
5+
<link href='css/vendor.css' rel='stylesheet'>
6+
<link href='css/application.css' rel='stylesheet'>
7+
</head>
8+
<body>
9+
<div class='bootstrap-container'>
10+
<style media="screen" type="text/css">
11+
.placeholder {
12+
background: #ccff00;
13+
padding: 30px 5px;
14+
clear: both;
15+
}
16+
17+
.layout {
18+
overflow: auto;
19+
}
20+
21+
.layout > .region:nth-child(1) {
22+
float: left;
23+
width: 50%;
24+
}
25+
26+
.layout > .region:nth-child(2) {
27+
float: right;
28+
width: 47%;
29+
}
30+
31+
.part {
32+
clear: both;
33+
background: #ccc;
34+
padding: 30px 5px;
35+
margin: 5px;
36+
}
37+
</style>
38+
39+
<div data-type="region" class="region" id="root">
40+
<div data-type="part" class="part">
41+
Part 1
42+
</div>
43+
<div data-type="layout" class="layout">
44+
<div data-type="region" class="region">
45+
<div data-type="part" class="part">
46+
Part 2
47+
</div>
48+
</div>
49+
<div data-type="region" class="region">
50+
<div data-type="part" class="part">
51+
Part 3
52+
</div>
53+
<div data-type="part" class="part">
54+
Part 4
55+
</div>
56+
</div>
57+
</div>
58+
<div data-type="part" class="part">
59+
Part 5
60+
</div>
61+
</div>
62+
</div>
63+
<script src='js/debug.js'></script>
64+
</body>
65+
</html>

example.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<ol class='example'>
2+
<li>First</li>
3+
<li>Second</li>
4+
<li>Third</li>
5+
</ol>
6+
<script src='js/jquery-sortable.js'></script>

0 commit comments

Comments
 (0)