Files
zulip/static/js/message_live_update.js
Steve Howell 0fc2f18c1d bug fix: Fix already-rendered messages for avatar updates.
Most of the magic happens in message_live_update.update_avatar().

The prior code was buggy, as it was using person.id instead of
person.user_id, and it was not setting the image resolution.
2017-01-21 21:45:12 -08:00

28 lines
689 B
JavaScript

var message_live_update = (function () {
var exports = {};
exports.update_stream_name = function (stream_id, new_name) {
_.each([home_msg_list, current_msg_list, message_list.all], function (list) {
list.update_stream_name(stream_id, new_name);
});
};
exports.update_avatar = function (person) {
var sent_by_me = people.is_my_user_id(person.user_id);
var url = person.avatar_url;
url = people.format_small_avatar_url(url, sent_by_me);
$(".inline_profile_picture.u-" + person.user_id).css({
"background-image": "url(" + url + ")",
});
};
return exports;
}());
if (typeof module !== 'undefined') {
module.exports = message_live_update;
}