From cf241effbf35c6dca44d7dc90de8f94da4d0d82f Mon Sep 17 00:00:00 2001 From: Boris Grozev Date: Mon, 7 Nov 2016 21:23:33 -0600 Subject: [PATCH] style: Fixes indentation, spelling. --- conference.js | 4 ++-- modules/UI/toolbars/Toolbar.js | 6 ++---- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/conference.js b/conference.js index 17bac3d26..29c674cfa 100644 --- a/conference.js +++ b/conference.js @@ -432,8 +432,8 @@ function disconnect() { } /** - * Set permanent ptoperties to analytics. - * NOTE: Has to be used after JitsiMeetJS.init. otherwise analytics will be + * Set permanent properties to analytics. + * NOTE: Has to be used after JitsiMeetJS.init. Otherwise analytics will be * null. */ function setAnalyticsPermanentProperties() { diff --git a/modules/UI/toolbars/Toolbar.js b/modules/UI/toolbars/Toolbar.js index 5e17d9be6..f7d4c4c5f 100644 --- a/modules/UI/toolbars/Toolbar.js +++ b/modules/UI/toolbars/Toolbar.js @@ -118,13 +118,11 @@ const buttonHandlers = { }); }, "toolbar_film_strip": function () { - JitsiMeetJS.analytics.sendEvent( - 'toolbar.filmstrip.toggled'); + JitsiMeetJS.analytics.sendEvent('toolbar.filmstrip.toggled'); emitter.emit(UIEvents.TOGGLE_FILM_STRIP); }, "toolbar_button_raisehand": function () { - JitsiMeetJS.analytics.sendEvent( - 'toolbar.raiseHand.clicked'); + JitsiMeetJS.analytics.sendEvent('toolbar.raiseHand.clicked'); APP.conference.maybeToggleRaisedHand(); } };