Fixed error where saving message appears twice.

This commit is contained in:
Tom Needham 2011-11-07 22:27:49 +00:00
parent 7a8c762e48
commit 059ab889bd
1 changed files with 22 additions and 29 deletions

View File

@ -62,17 +62,8 @@ function showControls(filename){
}
function bindControlEvents(){
$("#editor_save").live('click',function() {
if(is_editor_shown){
doFileSave();
}
});
$('#editor_close').live('click',function() {
if(is_editor_shown){
hideFileEditor();
}
});
$("#editor_save").die('click', doFileSave).live('click', doFileSave);
$('#editor_close').live('click', hideFileEditor);
}
function updateSessionFileHash(path){
@ -175,6 +166,7 @@ function showFileEditor(dir,filename){
}
function hideFileEditor(){
if(!is_editor_shown){
$('#editor').attr('editorshown','false');
// Fade out controls
$('#editor_close').fadeOut('slow');
@ -194,6 +186,7 @@ function hideFileEditor(){
});
is_editor_shown = false;
}
}
$(window).resize(function() {
setEditorSize();