From e0ee638f2fed216a0b1b0d497d586917c805816e Mon Sep 17 00:00:00 2001 From: José Bollo Date: Fri, 1 Sep 2017 09:56:41 +0200 Subject: AFB.js: fix bug (minor) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I37ee5f599cf49a6a1c6b1e27cf3fcdd29b280c4a Signed-off-by: José Bollo --- test/monitoring/AFB.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test/monitoring') diff --git a/test/monitoring/AFB.js b/test/monitoring/AFB.js index 30fb9826..59e68abc 100644 --- a/test/monitoring/AFB.js +++ b/test/monitoring/AFB.js @@ -66,7 +66,7 @@ var AFB_websocket; var PROTO1 = "x-afb-ws-json1"; - AFB_websocket = function(onopen, onabort) { + AFB_websocket = function(on_open, on_abort) { var u = urlws; if (AFB_context.token) { u = u + '?x-afb-token=' + AFB_context.token; @@ -82,8 +82,8 @@ var AFB_websocket; this.ws.onerror = onerror.bind(this); this.ws.onclose = onclose.bind(this); this.ws.onmessage = onmessage.bind(this); - this.onopen = onopen; - this.onabort = onabort; + this.onopen = on_open; + this.onabort = on_abort; } function onerror(event) { -- cgit 1.2.3-korg