mirror of
https://github.com/Studio-42/elFinder
synced 2026-06-08 12:37:09 +00:00
86 lines
2.2 KiB
HTML
86 lines
2.2 KiB
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
|
|
"http://www.w3.org/TR/html4/strict.dtd">
|
|
|
|
<html lang="en">
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
<title>elFinder</title>
|
|
<!--
|
|
<script type='text/javascript' src='http://getfirebug.com/releases/lite/1.2/firebug-lite-compressed.js'></script>
|
|
-->
|
|
<link rel="stylesheet" href="css/smoothness/jquery-ui-1.8.13.custom.css" type="text/css" media="screen" title="no title" charset="utf-8">
|
|
<link rel="stylesheet" href="css/elfinder.css" type="text/css" media="screen" title="no title" charset="utf-8">
|
|
|
|
<script src="js/jquery-1.6.1.min.js" type="text/javascript" charset="utf-8"></script>
|
|
<script src="js/jquery-ui-1.8.13.custom.min.js" type="text/javascript" charset="utf-8"></script>
|
|
|
|
<script src="js/elfinder.min.js" type="text/javascript" charset="utf-8"></script>
|
|
<!--
|
|
<script src="js/i18n/elfinder.ru.js" type="text/javascript" charset="utf-8"></script>
|
|
-->
|
|
|
|
<style type="text/css">
|
|
#close, #open, #dock, #undock {
|
|
width: 100px;
|
|
position:relative;
|
|
display: -moz-inline-stack;
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
zoom: 1;
|
|
*display: inline;
|
|
margin:0 3px 3px 0;
|
|
padding:1px 0;
|
|
text-align:center;
|
|
border:1px solid #ccc;
|
|
background-color:#eee;
|
|
margin:1em .5em;
|
|
padding:.3em .7em;
|
|
border-radius:5px;
|
|
-moz-border-radius:5px;
|
|
-webkit-border-radius:5px;
|
|
cursor:pointer;
|
|
}
|
|
</style>
|
|
|
|
|
|
<script type="text/javascript" charset="utf-8">
|
|
$().ready(function() {
|
|
|
|
var f = $('#finder').elfinder({
|
|
url : 'connectors/php/connector.php',
|
|
lang : 'en',
|
|
docked : true
|
|
|
|
// dialog : {
|
|
// title : 'File manager',
|
|
// height : 500
|
|
// }
|
|
|
|
// Callback example
|
|
//editorCallback : function(url) {
|
|
// if (window.console && window.console.log) {
|
|
// window.console.log(url);
|
|
// } else {
|
|
// alert(url);
|
|
// }
|
|
//},
|
|
//closeOnEditorCallback : true
|
|
})
|
|
// window.console.log(f)
|
|
$('#close,#open,#dock,#undock').click(function() {
|
|
$('#finder').elfinder($(this).attr('id'));
|
|
})
|
|
|
|
})
|
|
</script>
|
|
|
|
</head>
|
|
<body>
|
|
<div id="open">open</div><div id="close">close</div><div id="dock">dock</div><div id="undock">undock</div>
|
|
<div id="finder">finder</div>
|
|
|
|
|
|
|
|
</body>
|
|
</html>
|