forked from Studio-42/elFinder
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch '2.x' of github.com:Studio-42/elFinder into 2.x
- Loading branch information
Showing
21 changed files
with
987 additions
and
515 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<!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.21/themes/smoothness/jquery-ui.css"> | ||
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script> | ||
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.21/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"> | ||
$().ready(function() { | ||
$('#elfinder').elfinder({ | ||
url : 'php/connector.php' // connector URL (REQUIRED) | ||
// lang: 'ru', // language (OPTIONAL) | ||
}); | ||
}); | ||
</script> | ||
</head> | ||
<body> | ||
|
||
<!-- Element where elFinder will be created (REQUIRED) --> | ||
<div id="elfinder"></div> | ||
|
||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.