case 75:case 37:r.navigation.hide(),r.prev(),t.preventDefault();
... particularly "case 75", was preventing the letter "k" from being used in my email contact form fields. I commented it out and all seems to be working fine now.
What is this line of code for? And how can I properly fix it?
Hi Dave, Please set enableKeyboardNavigation option to false for now. j and k keys are set to navigate to left and right in the gallery, disabling the keyboard navigation for the gallery should fix this.
This line of code:
case 75:case 37:r.navigation.hide(),r.prev(),t.preventDefault();
... particularly "case 75", was preventing the letter "k" from being used in my email contact form fields. I commented it out and all seems to be working fine now.
What is this line of code for? And how can I properly fix it?
Thanks, Dave