Fix polls not autoscrolling chat

This commit is contained in:
calzoneman 2013-05-14 13:15:58 -04:00
parent ce99233596
commit e45489b77c
1 changed files with 1 additions and 0 deletions

View File

@ -635,6 +635,7 @@ Callbacks = {
var pollMsg = $("<div/>").addClass("poll-notify")
.text(data.initiator + " opened a poll: \"" + data.title + "\"")
.appendTo($("#messagebuffer"));
$("#messagebuffer").scrollTop($("#messagebuffer").prop("scrollHeight"));
var poll = $("<div/>").addClass("well active").prependTo($("#pollcontainer"));
$("<button/>").addClass("close pull-right").text("×")
.appendTo(poll)