diff options
author | Tom Needham <needham.thomas@gmail.com> | 2012-01-14 15:45:19 +0000 |
---|---|---|
committer | Tom Needham <needham.thomas@gmail.com> | 2012-01-14 15:45:19 +0000 |
commit | bfdbcbee127062d1e9415047617370e424ab9631 (patch) | |
tree | 26c25c51aced8fa26fe26addcd3cdf6f87ebd6f0 /apps/files_texteditor | |
parent | e979aa0c323481c68c0328f4ec0d790583be3e47 (diff) | |
download | nextcloud-server-bfdbcbee127062d1e9415047617370e424ab9631.tar.gz nextcloud-server-bfdbcbee127062d1e9415047617370e424ab9631.zip |
Fix breadcrumb issue when closing editor
Diffstat (limited to 'apps/files_texteditor')
-rw-r--r-- | apps/files_texteditor/js/editor.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_texteditor/js/editor.js b/apps/files_texteditor/js/editor.js index 72e4c0e4c41..b36a3a692cd 100644 --- a/apps/files_texteditor/js/editor.js +++ b/apps/files_texteditor/js/editor.js @@ -216,7 +216,7 @@ function showFileEditor(dir,filename){ // Fades out the editor. function hideFileEditor(){ // Fades out editor controls - $('#controls > :not(.actions,#file_access_panel),#breadcrumb_file').fadeOut('slow',function(){ + $('#controls > :not(.actions,#file_access_panel,.crumb),#breadcrumb_file').fadeOut('slow',function(){ $(this).remove(); }); // Fade out editor |