You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.3 KiB
40 lines
1.3 KiB
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>elFinder 2.0</title>
|
|
|
|
<!-- jQuery and jQuery UI (REQUIRED) -->
|
|
<link rel="stylesheet" type="text/css" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.23/themes/smoothness/jquery-ui.css">
|
|
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js"></script>
|
|
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.23/jquery-ui.min.js"></script>
|
|
|
|
<!-- elFinder CSS (REQUIRED) -->
|
|
<link rel="stylesheet" type="text/css" href="css/elfinder.min.css">
|
|
<link rel="stylesheet" type="text/css" href="css/theme.css">
|
|
|
|
<!-- elFinder JS (REQUIRED) -->
|
|
<script src="js/elfinder.min.js"></script>
|
|
|
|
<!-- elFinder translation (OPTIONAL) -->
|
|
<script src="js/i18n/elfinder.ru.js"></script>
|
|
|
|
<!-- elFinder initialization (REQUIRED) -->
|
|
<script type="text/javascript" charset="utf-8">
|
|
// Documentation for client options:
|
|
// https://github.com/Studio-42/elFinder/wiki/Client-configuration-options
|
|
$(document).ready(function() {
|
|
$('#elfinder').elfinder({
|
|
url : 'php/connector.minimal.php' // connector URL (REQUIRED)
|
|
// , lang: 'ru' // language (OPTIONAL)
|
|
});
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
|
|
<!-- Element where elFinder will be created (REQUIRED) -->
|
|
<div id="elfinder"></div>
|
|
|
|
</body>
|
|
</html>
|
|
|