make sticky chat mroe responsive to changes in top bar

This commit is contained in:
John McLear 2013-11-25 17:33:33 +00:00
parent 8b821d42a2
commit 252be19885

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"});