style: Fixes indentation, spelling.

This commit is contained in:
Boris Grozev 2016-11-07 21:23:33 -06:00
parent c0c198098b
commit cf241effbf
2 changed files with 4 additions and 6 deletions

View File

@ -432,8 +432,8 @@ function disconnect() {
} }
/** /**
* Set permanent ptoperties to analytics. * Set permanent properties to analytics.
* NOTE: Has to be used after JitsiMeetJS.init. otherwise analytics will be * NOTE: Has to be used after JitsiMeetJS.init. Otherwise analytics will be
* null. * null.
*/ */
function setAnalyticsPermanentProperties() { function setAnalyticsPermanentProperties() {

View File

@ -118,13 +118,11 @@ const buttonHandlers = {
}); });
}, },
"toolbar_film_strip": function () { "toolbar_film_strip": function () {
JitsiMeetJS.analytics.sendEvent( JitsiMeetJS.analytics.sendEvent('toolbar.filmstrip.toggled');
'toolbar.filmstrip.toggled');
emitter.emit(UIEvents.TOGGLE_FILM_STRIP); emitter.emit(UIEvents.TOGGLE_FILM_STRIP);
}, },
"toolbar_button_raisehand": function () { "toolbar_button_raisehand": function () {
JitsiMeetJS.analytics.sendEvent( JitsiMeetJS.analytics.sendEvent('toolbar.raiseHand.clicked');
'toolbar.raiseHand.clicked');
APP.conference.maybeToggleRaisedHand(); APP.conference.maybeToggleRaisedHand();
} }
}; };