From 2d4886dfa0d10031a4a6d839f18ee56ec1f2aee8 Mon Sep 17 00:00:00 2001 From: Flavio Curella Date: Tue, 12 Sep 2017 10:22:43 -0700 Subject: [PATCH] Upgrade reconnecting-websocket (#734) * fix url in comment * upgrade reconnecting-websocket --- js_client/package.json | 2 +- js_client/src/index.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/js_client/package.json b/js_client/package.json index e84ef2f..f32aaea 100644 --- a/js_client/package.json +++ b/js_client/package.json @@ -23,7 +23,7 @@ ], "license": "BSD-3-Clause", "dependencies": { - "reconnecting-websocket": "^3.0.3" + "reconnecting-websocket": "^3.2.1" }, "jest": { "roots": [ diff --git a/js_client/src/index.js b/js_client/src/index.js index ae0fd48..e6ca77a 100644 --- a/js_client/src/index.js +++ b/js_client/src/index.js @@ -30,7 +30,7 @@ export class WebSocketBridge { * @param {String} [url] The url of the websocket. Defaults to * `window.location.host` * @param {String[]|String} [protocols] Optional string or array of protocols. - * @param {Object} options Object of options for [`reconnecting-websocket`](https://github.com/joewalnes/reconnecting-websocket#options-1). + * @param {Object} options Object of options for [`reconnecting-websocket`](https://github.com/pladaria/reconnecting-websocket#configure). * @example * const webSocketBridge = new WebSocketBridge(); * webSocketBridge.connect();