From 86825ee3b52a7a00a367a9909a37dfb8ad90a9c0 Mon Sep 17 00:00:00 2001 From: Tom Needham Date: Wed, 5 Oct 2011 16:10:11 +0100 Subject: [PATCH] Cleanup of code. Fixed breadcrumb removal issue --- apps/files_texteditor/js/editor.js | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/apps/files_texteditor/js/editor.js b/apps/files_texteditor/js/editor.js index 4758a5948bd..f352e191c9d 100644 --- a/apps/files_texteditor/js/editor.js +++ b/apps/files_texteditor/js/editor.js @@ -168,7 +168,6 @@ function hideFileEditor(){ $('#editor_close').remove(); $('#editor_save').remove(); $('#editor').remove(); - $('.actions').prev().remove(); var editorhtml = '
'; $('table').after(editorhtml); $('.actions,#file_access_panel').fadeIn('slow'); @@ -177,11 +176,7 @@ function hideFileEditor(){ } $(window).resize(function() { - setEditorSize(); -}); - -$(document).ready(function() { - bindControlEvents(); + setEditorSize(); }); $(document).ready(function(){ @@ -206,4 +201,6 @@ $(document).ready(function(){ showFileEditor(dir,file); }); } + // Binds the file save and close editor events to the buttons + bindControlEvents(); }); -- 2.39.5