Hi!
In the Include block I see this piece of code to disable the shortcut if the user is in a Inputfield:
Kind Regards,
Martijn Habraken
In the Include block I see this piece of code to disable the shortcut if the user is in a Inputfield:
//The function to be called at keypressvar func = function(e) { e = e || window.event;if(opt['disable_in_input']) { //Don't enable shortcut keys in Input, Textarea fieldsvar element;if(e.target) element=e.target;elseif(e.srcElement) element=e.srcElement;if(element.nodeType==3) element=element.parentNode;if(element.tagName == 'INPUT' || element.tagName == 'TEXTAREA') return; }However it look like it's not working. When I use the demo page it also fails.
Kind Regards,
Martijn Habraken