make sticky chat mroe responsive to changes in top bar

pull/2010/head
John McLear 2013-11-25 17:33:33 +00:00
parent 8b821d42a2
commit 252be19885
1 changed files with 3 additions and 0 deletions

View File

@ -43,9 +43,12 @@ var chat = (function()
$('#chatbox').addClass("stickyChat");
$('#chattext').css({"top":"0px"});
$('#editorcontainer').css({"right":"192px"});
var editorcontainerTop = $('#editorcontainer').offset().top;
$('.stickyChat').css("top",editorcontainerTop+"px");
isStuck = true;
} else { // Unstick it
padcookie.setPref("chatAlwaysVisible", false);
$('.stickyChat').css("top", "auto");
$('#chatbox').removeClass("stickyChat");
$('#chattext').css({"top":"25px"});
$('#editorcontainer').css({"right":"0px"});