this.rpcCall('irc.raw', connection_id, args, callback);\r
};\r
\r
-\r
/**\r
* Sends ENCODING change request to server.\r
* @param {String} new_encoding The new proposed encode\r
\r
this.rpcCall('irc.encoding', connection_id, args, callback);\r
};\r
-\r
- /**\r
- * Sends a Wallops message\r
- * @param {String} target The target of the message\r
- * @param {String} msg The message to send\r
- * @param {Function} callback A callback function\r
- */\r
- this.wallops = function (connection_id, target, msg, callback) {\r
- var args = {\r
- target: target,\r
- msg: msg\r
- };\r
-\r
- this.rpcCall('irc.wallops', connection_id, args, callback);\r
- };\r
-\r
+ \r
\r
return new (Backbone.Model.extend(this))(arguments);\r
};\r
nick: command.nick,
ident: command.ident,
hostname: command.hostname,
- target: this.irc_connection.nick,
msg: command.params[command.params.length - 1]
});
},