Fix event trigger bug

This commit is contained in:
Mattias Erming 2014-03-29 08:36:12 -07:00
parent 15a23d131e
commit 2c8040a6ca
3 changed files with 13 additions and 7 deletions

View file

@ -17,8 +17,10 @@ $(function() {
function event(type, json) {
console.log(json);
switch (type) {
console.log(type);
switch (type) {
case "network":
var html = "";
json.forEach(function(network) {
@ -81,7 +83,7 @@ $(function() {
if (typeof json.target !== "undefined") {
target = chat.find(".window[data-id='" + json.target + "']");
}
var message = json.data;
if (message.type == "error") {
target = target.parent().find(".active");

View file

@ -24,8 +24,7 @@ models.Users = Backbone.Collection.extend({
}
);
// Iterate all the modes and move users with these
// modes to the top of the collection.
// Move users with these modes to the top.
var modes = ["+", "@"];
for (var i in modes) {
this.models = _.remove(this.models, function(user) {
@ -108,8 +107,11 @@ models.Network = Backbone.Model.extend({
channels: new models.Channels,
});
this.get("channels").on("message user", function() { this.trigger(action, data); }, this);
this.get("channels").on("all", function(action, data) {
if (action == "message"
|| action == "user") {
return this.trigger(action, data);
}
this.trigger("channel", {
target: this.get("id"),
type: "channel",

View file

@ -86,8 +86,10 @@ function input(json) {
"msg",
channel.get("name")
);
case "msg":
channel.addMessage({message: _.tail(args, 2)});
case "msg":
channel.addMessage({
message: _.tail(args, 2).join(" ")
});
break;
case "server":