I\'m unable to get any of the React SyntheticKeyboardEvent
handlers to register anything except null
for the event properties.
I\'ve isolated t
BinaryMuse provided the answer on IRC. Turns out it's just a quirk; you can't read the properties directly from SyntheticKeyboardEvent
-- you need to specify the properties from the handler:
handleKeyUp: function(e) {
console.log(e.type, e.which, e.timeStamp);
},
http://jsfiddle.net/BinaryMuse/B98Ar/