Changed search shortcut to be Ctrl+/

This commit is contained in:
Robert Best 2014-05-15 10:50:19 -04:00
parent f9166119f3
commit af8de6aff0

View file

@ -141,10 +141,10 @@ var labelType, useGradients, nativeTextSupport, animate, json, Mconsole = null,
}); });
// if the search is closed and user hits SHIFT+S // if the search is closed and user hits SHIFT+S
$('body').bind('keyup', function(e) { $('body').bind('keydown', function(e) {
switch(e.which) { switch(e.which) {
case 83: case 191:
if (e.shiftKey && !searchIsOpen) { if (e.ctrlKey && !searchIsOpen) {
openSearch(); openSearch();
} }
break; break;