changed function( to function (

This commit is contained in:
logsol 2012-07-28 13:38:31 +02:00
parent 26f3d22db7
commit 7e5eeb0a27
36 changed files with 209 additions and 209 deletions

View file

@ -4,7 +4,7 @@ define([
"Game/Core/NotificationCenter"
],
function(Parent, ProtocolHelper, NotificationCenter) {
function (Parent, ProtocolHelper, NotificationCenter) {
function User(id, coordinator) {
Parent.call(this, id);
@ -18,17 +18,17 @@ function(Parent, ProtocolHelper, NotificationCenter) {
User.prototype = Object.create(Parent.prototype);
User.prototype.init = function(socketLink){
User.prototype.init = function (socketLink){
var self = this;
}
/*
User.prototype.setChannel = function(channel) {
User.prototype.setChannel = function (channel) {
this.channel = channel;
}
User.prototype.sendCommand = function(command, options) {
User.prototype.sendCommand = function (command, options) {
var message = ProtocolHelper.encodeCommand(command, options);
this.socketLink.send(message);
@ -36,7 +36,7 @@ function(Parent, ProtocolHelper, NotificationCenter) {
User.prototype.toString = function() {
User.prototype.toString = function () {
return "[User " + this.id + "]";
};
*/