-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocumentLibrary.php
More file actions
30 lines (29 loc) · 798 Bytes
/
documentLibrary.php
File metadata and controls
30 lines (29 loc) · 798 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
28
29
30
<!DOCTYPE html>
<html>
<head>
<title>Document Libarary Widget</title>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.0/themes/smoothness/jquery-ui.css" />
<!--<link rel="stylesheet" href="css/jquery-ui-1.10.0.custom.css" />-->
<link rel="stylesheet" href="css/documentLibrary.css" />
</head>
<body>
<div id="content">
<div id="library"></div>
</div>
<script src="http://code.jquery.com/jquery-1.9.0.js"></script>
<script src="http://code.jquery.com/ui/1.10.0/jquery-ui.js"></script>
<!--<script src="js/jquery-1.9.0.js"></script>
<script src="js/jquery-ui.js"></script>-->
<script src="js/documentLibrary.js"></script>
<style>
</style>
<script>
$(function() {
$('#library').documentLibrary({
view: 'column',
title: " Document Library"
});
});
</script>
</body>
</html>