mirror of
https://github.com/ether/etherpad-lite.git
synced 2026-05-08 05:36:09 +02:00
make sticky chat mroe responsive to changes in top bar
This commit is contained in:
parent
8b821d42a2
commit
252be19885
@ -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"});
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user