Merge pull request #1601 from jitsi/disable-speakerstats-filmstrip-only

Disables speaker stats in filmStrip only mode.
This commit is contained in:
yanas 2017-05-24 16:50:39 -05:00 committed by GitHub
commit abd30e0269
1 changed files with 9 additions and 7 deletions

View File

@ -1,4 +1,4 @@
/* global APP, $, JitsiMeetJS */
/* global APP, $, JitsiMeetJS, interfaceConfig */
import {
toggleDialog
@ -34,12 +34,14 @@ function initGlobalShortcuts() {
});
KeyboardShortcut._addShortcutToHelp("SPACE","keyboardShortcuts.pushToTalk");
KeyboardShortcut.registerShortcut("T", null, () => {
JitsiMeetJS.analytics.sendEvent("shortcut.speakerStats.clicked");
APP.store.dispatch(toggleDialog(SpeakerStats, {
conference: APP.conference
}));
}, "keyboardShortcuts.showSpeakerStats");
if(!interfaceConfig.filmStripOnly) {
KeyboardShortcut.registerShortcut("T", null, () => {
JitsiMeetJS.analytics.sendEvent("shortcut.speakerStats.clicked");
APP.store.dispatch(toggleDialog(SpeakerStats, {
conference: APP.conference
}));
}, "keyboardShortcuts.showSpeakerStats");
}
/**
* FIXME: Currently focus keys are directly implemented below in onkeyup.