Merge pull request #131 from fouksf/keyboard-shortcuts

Fixes a mistake in the video switching shortcuts.
This commit is contained in:
hristoterezov 2014-09-15 15:50:40 +03:00
commit ca8d978107
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ var KeyboardShortcut = (function(my) {
shortcuts[keycode].function(); shortcuts[keycode].function();
} else if (keycode >= "0".charCodeAt(0) && keycode <= "9".charCodeAt(0)) { } else if (keycode >= "0".charCodeAt(0) && keycode <= "9".charCodeAt(0)) {
var remoteVideos = $(".videocontainer:not(#mixedstream)"), var remoteVideos = $(".videocontainer:not(#mixedstream)"),
videoWanted = (keycode - "0".charCodeAt(0) + 1) % 10; videoWanted = keycode - "0".charCodeAt(0) + 1;
if (remoteVideos.length > videoWanted) { if (remoteVideos.length > videoWanted) {
remoteVideos[videoWanted].click(); remoteVideos[videoWanted].click();
} }