aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarvin Thomas Rabe <m.rabe@echtzeitraum.de>2011-10-04 21:05:49 +0200
committerMarvin Thomas Rabe <m.rabe@echtzeitraum.de>2011-10-04 21:05:49 +0200
commit0179b61f6917ea80bb161d8a3fde1673b99150f4 (patch)
tree640bb332e8c3cc23340c7cd5a47f726e851d4fe6
parent451b5940ea8f81844f734f9cb9a0a14209e2dace (diff)
downloadnextcloud-server-0179b61f6917ea80bb161d8a3fde1673b99150f4.tar.gz
nextcloud-server-0179b61f6917ea80bb161d8a3fde1673b99150f4.zip
fixed another bug with breadcrumbs
-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();