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.
* 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() {

View File

@ -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();
}
};