Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
FIX option consoleLogReconnect: true per default
  • Loading branch information
skladd committed Jul 15, 2016
commit 5353e7bbc415925f4dc4f70666ae166e4f9fe7f3
2 changes: 1 addition & 1 deletion dist/angular-websocket.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@
this.initialTimeout = options && options.initialTimeout || 500; // 500ms
this.maxTimeout = options && options.maxTimeout || 5 * 60 * 1000; // 5 minutes
this.reconnectIfNotNormalClose = options && options.reconnectIfNotNormalClose || false;
this.consoleLogReconnect = options && options.consoleLogReconnect && true;
this.consoleLogReconnect = options && options.consoleLogReconnect !== undefined ? options.consoleLogReconnect : true;
this.binaryType = options && options.binaryType || 'blob';

this._reconnectAttempts = 0;
Expand Down
2 changes: 1 addition & 1 deletion dist/angular-websocket.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading