Merge pull request #693 from metamaps/feature/re-enable-search

re-enable Ctrl+/ search box focus shortcut
This commit is contained in:
Devin Howard 2016-09-30 12:02:44 +08:00 committed by GitHub
commit 97c118a20b

View file

@ -8,6 +8,7 @@ import Realtime from './Realtime'
import Selected from './Selected'
import Topic from './Topic'
import Visualize from './Visualize'
import { Search } from './GlobalUI'
const Listeners = {
init: function () {
@ -93,6 +94,11 @@ const Listeners = {
})
}
break
case 191: // if / is pressed
if (e.ctrlKey) {
Search.focus()
}
break
default:
// console.log(e.which)
break