mirror of
https://github.com/logsol/chuck.js.git
synced 2026-05-11 18:47:35 +00:00
changed function XXX( to function XXX (
This commit is contained in:
parent
7e5eeb0a27
commit
76daceb2e7
22 changed files with 22 additions and 22 deletions
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
function (GameController, NotificationCenter) {
|
||||
|
||||
function Channel(coordinatorLink) {
|
||||
function Channel (coordinatorLink) {
|
||||
var self = this;
|
||||
|
||||
this.coordinatorLink = coordinatorLink;
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ define([
|
|||
|
||||
function (Box2D, Parent) {
|
||||
|
||||
function Detector() {
|
||||
function Detector () {
|
||||
Parent.call(this);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ define([
|
|||
|
||||
function () {
|
||||
|
||||
function CoordinatorLink(process) {
|
||||
function CoordinatorLink (process) {
|
||||
this.process = process;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ define([
|
|||
|
||||
function (Parent, ProtocolHelper, NotificationCenter) {
|
||||
|
||||
function User(id, coordinator) {
|
||||
function User (id, coordinator) {
|
||||
Parent.call(this, id);
|
||||
this.id = socketLink.id;
|
||||
this.socketLink = socketLink;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue