diff options
author | Tom Needham <needham.thomas@gmail.com> | 2011-10-01 22:48:00 +0100 |
---|---|---|
committer | Tom Needham <needham.thomas@gmail.com> | 2011-10-01 22:48:00 +0100 |
commit | 0825073e8cac2a654bbc89b99b5a83cdfee7a836 (patch) | |
tree | 1b53a19b3f2b307351049b3e7aa811f9c0d32664 /files/index.php | |
parent | 3c361cec924026314bf39e60904775d8b9636696 (diff) | |
download | nextcloud-server-0825073e8cac2a654bbc89b99b5a83cdfee7a836.tar.gz nextcloud-server-0825073e8cac2a654bbc89b99b5a83cdfee7a836.zip |
Editor now loads on top of files app.
Diffstat (limited to 'files/index.php')
-rw-r--r-- | files/index.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/files/index.php b/files/index.php index aa081d48804..67324d4df2c 100644 --- a/files/index.php +++ b/files/index.php @@ -30,9 +30,12 @@ OC_Util::checkLoggedIn(); // Load the files we need OC_Util::addStyle( "files", "files" ); +OC_Util::addStyle( 'files_texteditor', 'style' ); OC_Util::addScript( "files", "files" ); OC_Util::addScript( 'files', 'filelist' ); OC_Util::addScript( 'files', 'fileactions' ); +OC_Util::addScript( 'files_texteditor', 'editor'); +OC_Util::addScript( 'files_texteditor', 'aceeditor/ace'); if(!isset($_SESSION['timezone'])){ OC_Util::addScript( 'files', 'timezone' ); } |