Fix previous bug
This commit is contained in:
parent
c0e27205ac
commit
cce42995b9
1 changed files with 5 additions and 2 deletions
|
@ -98,7 +98,7 @@ let META_HEADER = [
|
||||||
})}
|
})}
|
||||||
|
|
||||||
window.load_dynamic_update = function (last_msg) {
|
window.load_dynamic_update = function (last_msg) {
|
||||||
var receiver = EventReceiver(
|
var receiver = new EventReceiver(
|
||||||
"{{ EVENT_DAEMON_LOCATION }}", "{{ EVENT_DAEMON_POLL_LOCATION }}",
|
"{{ EVENT_DAEMON_LOCATION }}", "{{ EVENT_DAEMON_POLL_LOCATION }}",
|
||||||
['chat_lobby', 'chat_{{request.profile.id}}'], last_msg, function (message) {
|
['chat_lobby', 'chat_{{request.profile.id}}'], last_msg, function (message) {
|
||||||
var room = (message.type == 'lobby') ? '' : message.room;
|
var room = (message.type == 'lobby') ? '' : message.room;
|
||||||
|
@ -208,9 +208,12 @@ let META_HEADER = [
|
||||||
if ($('#message-'+tmp_id).length) {
|
if ($('#message-'+tmp_id).length) {
|
||||||
$('#message-'+tmp_id).replaceWith(data);
|
$('#message-'+tmp_id).replaceWith(data);
|
||||||
}
|
}
|
||||||
else {
|
else if ($('#body-block-'+tmp_id).length) {
|
||||||
$('#body-block-'+tmp_id).replaceWith($body_block);
|
$('#body-block-'+tmp_id).replaceWith($body_block);
|
||||||
}
|
}
|
||||||
|
else {
|
||||||
|
add_new_message(message, room);
|
||||||
|
}
|
||||||
resize_emoji($body_block);
|
resize_emoji($body_block);
|
||||||
MathJax.Hub.Queue(["Typeset",MathJax.Hub]);
|
MathJax.Hub.Queue(["Typeset",MathJax.Hub]);
|
||||||
register_time($('.time-with-rel'));
|
register_time($('.time-with-rel'));
|
||||||
|
|
Loading…
Reference in a new issue