]> source.dussan.org Git - nextcloud-server.git/commitdiff
Cleanup of code. Fixed breadcrumb removal issue
authorTom Needham <needham.thomas@gmail.com>
Wed, 5 Oct 2011 15:10:11 +0000 (16:10 +0100)
committerTom Needham <needham.thomas@gmail.com>
Wed, 5 Oct 2011 15:10:11 +0000 (16:10 +0100)
apps/files_texteditor/js/editor.js

index 4758a5948bdf5aa84350733562c940df4dfa4933..f352e191c9d451dc8f1e0ef31dabefcaf208c93e 100644 (file)
@@ -168,7 +168,6 @@ function hideFileEditor(){
                $('#editor_close').remove();
                $('#editor_save').remove();
                $('#editor').remove();
-               $('.actions').prev().remove();
                var editorhtml = '<div id="editor"></div>';
                $('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();
 });