aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--apps/files_texteditor/js/editor.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_texteditor/js/editor.js b/apps/files_texteditor/js/editor.js
index 779c292a31e..9ff29b01e6d 100644
--- a/apps/files_texteditor/js/editor.js
+++ b/apps/files_texteditor/js/editor.js
@@ -147,7 +147,7 @@ function hideFileEditor(){
// Fade out the save button
$('#editor_save').fadeOut('slow');
// Fade out breadcrumb
- $('#breadcrumb_file').fadeOut('slow');
+ $('#breadcrumb_file').fadeOut('slow', function(){ $(this).remove();});
// Fade out editor
$('#editor').fadeOut('slow', function(){
$('#editor_close').remove();