I had success related to keyboard events for text fields and inputs, for example:
Template.inputArea.events({ 'keydown textarea' : function(e){ console.log(e.which); } });
I'm not quite so familiar with connecting keyboard events to other DOM elements. I know that for window events I had to use jQuery to connect keydown input.
Template.foo.rendered = function(){ $(window).on('keydown', function(e){ console.log(e.which); }); };
Perhaps you could try something like this ...
bento source share