I came across this issue when originally porint the 6.x-2.x-dev branch to 5.x-2.x-dev but didn't after taking a different approach, one that didn't require the jQuery Update module I forgot about it. But as I have recently been playing with a few 5.x modules that require the jQuery Update module it came up again.

The issue is that when using the jQuery Update module for some unknown reason the Key Combo behavior javascript returns undefined when evaluating a Key Combo that uses the alt key.

A workaround is to either use a Combo without the alt key or use another dropdown behavior (icon hotspot).

Comments

deciphered’s picture

Title: Key Combo issue when using jQuery Update module. » Key Combo and 'alt' key issue
Version: 5.x-2.x-dev » 6.x-2.x-dev

Issue has now appeared in Drupal 6.3, possibly related to the jQuery update.

Still looking into the issue.

deciphered’s picture

Priority: Minor » Normal

updating priority.

deciphered’s picture

Further investigation shows that this is known issue in jQuery 1.2.5 and 1.2.6 (http://dev.jquery.com/ticket/2947).

Hopefully it will be fixed in a future release.

Looking into a workaround.

deciphered’s picture

Workaround to be committed later today:

In file behaviors/key_combo/key_combo.js, add the following line after line 8:

evt = evt.originalEvent ? evt.originalEvent : evt;
deciphered’s picture

Status: Active » Fixed

Committed.

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.