// Initialise the editor
showControls(filename,result.data.write);
$('table').fadeOut('slow', function() {
+ // Update document title
+ document.title = filename;
$('#editor').text(result.data.filecontents);
$('#editor').attr('data-dir', dir);
$('#editor').attr('data-filename', filename);
// Fade out editor
$('#editor').fadeOut('slow', function(){
$(this).remove();
+ // Reset document title
+ document.title = "ownCloud";
var editorhtml = '<div id="editor"></div>';
$('table').after(editorhtml);
$('.actions,#file_access_panel').fadeIn('slow');