cleaner reflow
This commit is contained in:
parent
9170effb27
commit
96d6e7c1b7
1 changed files with 4 additions and 3 deletions
|
@ -379,9 +379,10 @@ function handshake()
|
|||
}
|
||||
|
||||
var redrawEditbar = function(){
|
||||
var height = $('.menu_left').height() + 4 + "px";
|
||||
$('#editbar').css("height", height);
|
||||
$('#editorcontainer').css("top", height);
|
||||
var editbarHeight = $('.menu_left').height() + 2 + "px";
|
||||
var containerTop = $('.menu_left').height() + 5 + "px";
|
||||
$('#editbar').css("height", editbarHeight);
|
||||
$('#editorcontainer').css("top", containerTop);
|
||||
}
|
||||
|
||||
$.extend($.gritter.options, {
|
||||
|
|
Loading…
Reference in a new issue