Added fillHeight() js function for resizing editor

This commit is contained in:
Tom Needham 2011-10-04 19:46:27 +01:00
Родитель 0037e0c499
Коммит c71d28da39
2 изменённых файлов: 8 добавлений и 7 удалений

Просмотреть файл

@ -1,10 +1,11 @@
#editor{
position: absoloute;
height: 0;
width: 0;
display: block;
padding-top: 40px
/*
top: 41px;
left: 160px;
z-index: -1;
*/
}
#editorwrapper{
position: absoloute;

Просмотреть файл

@ -1,9 +1,9 @@
function setEditorSize(){
// Sets the size of the text editor window.
//$('#editor').css('height', $(window).height()-81);
$('#editor').css('height', $(window).height()-121);
$('#editor').css('width', $(window).width()-160);
$('#editor').css('padding-top', '40px');
//$('#editor').css('height', $(window).height()-121);
fillHeight($('#editor'));
//$('#editor').css('width', $(window).width()-160);
}
function getFileExtension(file){
@ -137,11 +137,11 @@ function showFileEditor(dir,filename){
});
});
bindControlEvents();
setEditorSize();
// End success
}
// End ajax
});
setEditorSize();
}
function hideFileEditor(){