I just found out that after upgrading to Meteor 0.5.2 (from 0.5) event processing for key events ("keypress", "keydown", keyup) stopped working for me. Other events like ('click' and "blur") work very well.
Even in sample applications, such code does nothing:
Template.someTemplate.events = {
'keydown' : function(e) {
console.log(e);
}
};
Interestingly, this code really works (the function is triggered) for pressing keys in I type inside input type = "text" or text field. But in another place, nothing happens.
I am testing the latest Crome in Ubuntu 12.10.
Anyone else having a problem?
Thanks George
source
share