Skip to content

Commit

Permalink
reupload
Browse files Browse the repository at this point in the history
  • Loading branch information
Offerel committed Apr 30, 2021
1 parent 1ed08d9 commit edd33b7
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 23 deletions.
2 changes: 1 addition & 1 deletion elfinder/js/ace/ace.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion elfinder/js/ace/worker-css.js

Large diffs are not rendered by default.

36 changes: 19 additions & 17 deletions elfinder/js/elfinder.min.js

Large diffs are not rendered by default.

10 changes: 6 additions & 4 deletions elfinder/roundcube.html
Original file line number Diff line number Diff line change
Expand Up @@ -98,12 +98,14 @@
fm.bind('init', function() {
// any your code
}).bind('editEditorPrepare', function(e){
if(data.id === 'aceeditor') {
data.instance.setOptions({
if(e.data.id === 'aceeditor') {
e.data.instance.setOptions({
theme: 'ace/theme/xcode',
wrap: false,
keybinding: 'vscode',
enableLiveAutocompletion: true
keyboardHandler: 'ace/keyboard/vscode',
enableBasicAutocompletion: true,
enableLiveAutocompletion: true,
enableSnippets: true
});
}
});
Expand Down

0 comments on commit edd33b7

Please sign in to comment.