mirror of https://github.com/zulip/zulip.git
Properly defer send_pointer_update setTimeout
(imported from commit 02a9c648eb420c8aebe84386cbb708bec96ca2e7)
This commit is contained in:
parent
92acd7bd1c
commit
36f4ce0c0b
|
@ -184,7 +184,9 @@ function send_pointer_update() {
|
|||
setTimeout(send_pointer_update, 1000);
|
||||
}
|
||||
|
||||
$(setTimeout(send_pointer_update, 1000));
|
||||
$(function () {
|
||||
setTimeout(send_pointer_update, 1000);
|
||||
});
|
||||
|
||||
function update_selected_message(message, opts) {
|
||||
opts = $.extend({}, {
|
||||
|
|
Loading…
Reference in New Issue