-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbasicdemowithmin.html
More file actions
74 lines (42 loc) · 1.5 KB
/
basicdemowithmin.html
File metadata and controls
74 lines (42 loc) · 1.5 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!doctype html>
<html>
<head>
<!-- Meta data -->
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<!-- Stylesheets -->
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/themes/smoothness/jquery-ui.css">
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap-theme.min.css">
<link rel="stylesheet" href="dragondrop.css">
<style>
#test-min-bar {
height: 20px;
}
</style>
<!-- Javascript libraries -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.0.0/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js"></script>
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
</head>
<body>
<!--The Page Content-->
<div data-role="main" class="ui-content">
<div id="main page" class="container">
<div class="row" id="test-min-bar">
</div>
<div class="row" id="test-page-body">
</div>
</div>
</div>
<script src="dragondrop.js"></script>
<script>
add_dragondrop_pop("test", "<p>this</p>", "test-page-body", true);
var someoptions = {
"minimise" : true,
"initialise_min_bar" : "test-min-bar"
};
initialise_dragondrop("test-page-body", someoptions);
</script>
</body>
</html>