I have a habbit of highlighting things as I read using the shift and arrow buttons. Any time I do this, it causes kayako to make my browser run off to other pages.
I've tried disabling keyboard shortcuts via main.js modifications, but any time I do, it causes other features to break.
How can keyboard shortcuts be disabled? I don't just want the shift / arrow button ones to be disabled, but every single one of them.
Thanks!
[edit]
Actually, I just fixed it. Here's how I did it:
Open up /themes/admin_default/main.js and navigate towards line 150
Find this:
Code:
if (e.altKey == true) {
return true;
}
if (e.shiftKey == true)
{
isShift = true;
} else if (e.ctrlKey == true) {
isCtrl = true;
}
change it to:
Code:
if (e.altKey == true) {
return false;
}
if (e.shiftKey == true)
{
isShift = false;
} else if (e.ctrlKey == true) {
isCtrl = false;
}
Save it, do a hard refresh (ctrl+f5) on the helpdesk index, and you're set.