Fixed issue#268 - No space at comment on ticket bulk action.

This commit is contained in:
Martin Edenhofer 2016-10-27 08:46:51 +02:00
parent 306c4b7017
commit 38250659b6

View file

@ -110,6 +110,10 @@ class App.TicketOverview extends App.Controller
$(window).off 'keydown.overview_navigation'
listNavigate: (e) =>
# ignore if focus is in bulk action
return if $(e.target).is('textarea, input, select')
if e.keyCode is 38 # up
e.preventDefault()
@nudge(e, -1)