Kayako logo
SupportSuite, eSupport and LiveResponse Discussion, troubleshooting and feedback related to Kayako's flagship support desk products SupportSuite, eSupport and LiveResponse.

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  (#1) Old
mikey Offline
New Member
 
Posts: 1
Join Date: Oct 2006
Lightbulb Disabling Keyboard Shortcuts? - 24-10-2006, 11:12 PM

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.

Last edited by mikey; 24-10-2006 at 11:18 PM.
   
Reply With Quote
Reply

Tags
disabling, keyboard, shortcuts

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



Powered by vBulletin® Version 3.7.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0
vBulletin Skin developed by: vBStyles.com


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47