Do not trigger a DOM event on every message
This commit is contained in:
parent
52a0552bc4
commit
743d4b61d5
@ -352,17 +352,14 @@ $(function() {
|
||||
var target = "#chan-" + data.chan;
|
||||
var container = chat.find(target + " .messages");
|
||||
|
||||
container
|
||||
.append(msg)
|
||||
.trigger("msg", [
|
||||
target,
|
||||
data.msg
|
||||
]);
|
||||
container.append(msg);
|
||||
|
||||
if (data.msg.self) {
|
||||
container
|
||||
.find(".unread-marker")
|
||||
.appendTo(container);
|
||||
} else {
|
||||
chatMessageShown(target, data.msg);
|
||||
}
|
||||
});
|
||||
|
||||
@ -892,11 +889,7 @@ $(function() {
|
||||
});
|
||||
});
|
||||
|
||||
chat.on("msg", ".messages", function(e, target, msg) {
|
||||
if (msg.self) {
|
||||
return;
|
||||
}
|
||||
|
||||
function chatMessageShown(target, msg) {
|
||||
var button = sidebar.find(".chan[data-target='" + target + "']");
|
||||
if (msg.highlight || (options.notifyAllMessages && msg.type === "message")) {
|
||||
if (!document.hasFocus() || !$(target).hasClass("active")) {
|
||||
@ -960,7 +953,7 @@ $(function() {
|
||||
badge.addClass("highlight");
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
chat.on("click", ".show-more-button", function() {
|
||||
var self = $(this);
|
||||
|
Loading…
Reference in New Issue
Block a user