Comparing version 0.49.3 to 0.50.0
@@ -317,6 +317,2 @@ $(function() { | ||
socket.on("topic", function(data) { | ||
$("#chan-" + data.chan).find(".header .topic").html(data.topic); | ||
}); | ||
socket.on("users", function(data) { | ||
@@ -323,0 +319,0 @@ var users = chat.find("#chan-" + data.chan).find(".users").html(render("user", data)); |
{ | ||
"name": "shout", | ||
"description": "Web IRC client", | ||
"version": "0.49.3", | ||
"version": "0.50.0", | ||
"author": "Mattias Erming", | ||
@@ -6,0 +6,0 @@ "preferGlobal": true, |
@@ -32,5 +32,5 @@ var _ = require("lodash"); | ||
chan: chan.id, | ||
topic: topic | ||
topic: _.escape(topic) | ||
}); | ||
}); | ||
}; |
1667871
107
31656