-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.html
More file actions
27 lines (22 loc) · 898 Bytes
/
example.html
File metadata and controls
27 lines (22 loc) · 898 Bytes
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
<html>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.4/themes/smoothness/jquery-ui.css" />
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.4/jquery-ui.min.js"></script>
<script src="file:///home/kristian/Source/jspartition/partition.js"></script>
<body>
<div style="margin-top:10px;"/>
<div id="partition" style="height: 300px ; width: 100%;" >
</div>
</body>
<script type="application/javascript">
$(document).ready(function(){
$('#partition').partition({
colors: [ "lightblue", "lightgrey" ],
abs: {value: 500, units: "GB"},
onClear: function() {
return confirm("Are you sure?");
}
});
});
</script>
</html>