Skip to content

Commit

Permalink
Merge pull request #45 from josh/patch-1
Browse files Browse the repository at this point in the history
Fix trailing comma syntax error
  • Loading branch information
joewalnes committed Feb 25, 2015
2 parents fcd737f + 12ebe3d commit 6ccde91
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions reconnecting-websocket.js
Expand Up @@ -125,10 +125,10 @@
reconnectDecay: 1.5,

/** The maximum time in milliseconds to wait for a connection to succeed before closing and retrying. */
timeoutInterval: 2000
timeoutInterval: 2000,

/** The maximum number of reconnection attempts to make. Unlimited if null. */
maxReconnectAttempts: null,
maxReconnectAttempts: null
}
if (!options) { options = {}; }

Expand Down

0 comments on commit 6ccde91

Please sign in to comment.