From 28a8d7d4866904cab78b589dcc5cab571c630d60 Mon Sep 17 00:00:00 2001 From: Luiz Guilherme Date: Wed, 13 Feb 2019 07:13:52 -0200 Subject: [PATCH] fix(Blip Chat): Remove console log --- index.html | 2 +- src/BlipChat.js | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/index.html b/index.html index f04f7e7..383b907 100644 --- a/index.html +++ b/index.html @@ -242,7 +242,7 @@

For connection data tests (*optional)

x: 'y' }) .withCustomCommonUrl( - 'https://hmg-chat.blip.ai/' + '' ) builder.build() } diff --git a/src/BlipChat.js b/src/BlipChat.js index 1423c3f..838466f 100644 --- a/src/BlipChat.js +++ b/src/BlipChat.js @@ -79,7 +79,6 @@ export class BlipChat { withEventHandler(name, handler) { this.events[name] = handler - console.log('EVENT POSTED: ' + name) return this } @@ -97,7 +96,6 @@ export class BlipChat { if (commonUrl && !commonUrl.endsWith('/')) { commonUrl += '/' } - this.customCommonUrl = commonUrl return this }