Merge pull request #545 from geekgonecrazy/patch-2

Fix search not coming up
pull/548/head
Rodrigo Nascimento 11 years ago
commit c0fce847f8
  1. 2
      client/views/main.coffee

@ -1,6 +1,6 @@
Template.body.onRendered ->
$(document.body).on 'keydown', (e) ->
if e.keyCode is 80 and e.metaKey is true
if e.keyCode is 80 and (e.ctrlKey is true or e.metaKey is true)
e.preventDefault()
e.stopPropagation()
spotlight.show()

Loading…
Cancel
Save