Event fix() minor improvement

Event fix() minor improvement


Hi,
I was wondering if it is worth to move this long line of the fix()
method:
var props = "altKey attrChange ......wheelDelta which".split(" "),
out of the method itself, as a property of jQuery.event, initialized
only once at load time, like this:
props: "altKey attrChange ...... wheelDelta which".split(" "),
Then in the fix() method change the declaration for "props" to point
to that property:
var originalEvent = event, props = this.props;
This will slice out some extra millisecond for every event fix() call.
I would just make sure there is no better way to achieve the same, and
will submit the ticket and append the necessary patch if this is OK...
--
Diego Perini