I want to make some modification to the key.js file to be able to handle modifiers other than "shift", "alt", "ctrl", or "meta i.e. something like this 'down:50+alt+49' (altkey+onekey+towkey)should also work.
[url]http://yuilibrary.com/yui/docs/event/key.html[/url]
How can i make changes to this file and make sure the modified file is used when i call
YUI().use("event-key", function(Y) { Y.on('key', function() {console.log('test'); }, '#my-input-element', 'down:50+alt+49');
Thanks in advance. KD