commit
df4a91fd05
@ -403,16 +403,14 @@ button {
|
|||||||
line-height: 50px !important;
|
line-height: 50px !important;
|
||||||
height: 48px;
|
height: 48px;
|
||||||
padding: 0 20px;
|
padding: 0 20px;
|
||||||
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
#windows .header .title {
|
#windows .header .title {
|
||||||
font: 14px Lato;
|
font: 14px Lato;
|
||||||
}
|
}
|
||||||
#windows .header .topic {
|
#windows .header .topic {
|
||||||
/* Hidden for now */
|
|
||||||
display: none;
|
|
||||||
color: #777;
|
color: #777;
|
||||||
margin-left: 8px;
|
margin-left: 8px;
|
||||||
text-transform: capitalize;
|
|
||||||
}
|
}
|
||||||
#windows .header .right {
|
#windows .header .right {
|
||||||
float: right;
|
float: right;
|
||||||
|
@ -314,6 +314,14 @@ $(function() {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
socket.on("topic", function(data) {
|
||||||
|
// .text() escapes HTML but not quotes. That only matters with text inside attributes.
|
||||||
|
var topic = $("#chan-" + data.chan).find(".header .topic");
|
||||||
|
topic.text(data.topic);
|
||||||
|
// .attr() is safe escape-wise but consider the capabilities of the attribute
|
||||||
|
topic.attr("title", data.topic);
|
||||||
|
});
|
||||||
|
|
||||||
socket.on("users", function(data) {
|
socket.on("users", function(data) {
|
||||||
var users = chat.find("#chan-" + data.chan).find(".users").html(render("user", data));
|
var users = chat.find("#chan-" + data.chan).find(".users").html(render("user", data));
|
||||||
var nicks = [];
|
var nicks = [];
|
||||||
|
@ -9,27 +9,24 @@ module.exports = function(irc, network) {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
var from = data.nick || chan.name;
|
var from = data.nick || chan.name;
|
||||||
var self = false;
|
|
||||||
if (from.toLowerCase() == irc.me.toLowerCase()) {
|
|
||||||
self = true;
|
|
||||||
}
|
|
||||||
var topic = data.topic;
|
var topic = data.topic;
|
||||||
|
|
||||||
var msg = new Msg({
|
var msg = new Msg({
|
||||||
type: Msg.Type.TOPIC,
|
type: Msg.Type.TOPIC,
|
||||||
mode: chan.getMode(from),
|
mode: chan.getMode(from),
|
||||||
from: from,
|
from: from,
|
||||||
text: topic,
|
text: topic,
|
||||||
self: self
|
self: (from.toLowerCase() === irc.me.toLowerCase())
|
||||||
});
|
});
|
||||||
chan.messages.push(msg);
|
chan.messages.push(msg);
|
||||||
client.emit("msg", {
|
client.emit("msg", {
|
||||||
chan: chan.id,
|
chan: chan.id,
|
||||||
msg: msg
|
msg: msg
|
||||||
});
|
});
|
||||||
chan.topic = topic
|
chan.topic = topic;
|
||||||
client.emit("topic", {
|
client.emit("topic", {
|
||||||
chan: chan.id,
|
chan: chan.id,
|
||||||
topic: _.escape(topic)
|
topic: chan.topic
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user