| Summary | Accesskeys in Firefox 3 |
| Queue | Horde Base |
| Queue Version | HEAD |
| Type | Bug |
| State | Assigned |
| Priority | 1. Low |
| Owners | Horde Developers |
| Requester | Chuck Hagenbuch <chuck (at) horde (dot) org> |
| Created | 05/31/2008 (82 days ago) |
| Due | |
| Updated | 08/20/2008 (yesterday) |
| Assigned | |
| Resolved | |
| Attachments | |
| Milestone | |
| Patch | No |
Any element that has at least 1 event listener added to it via
Event.observe() has the attribute '_prototypeEventID' set. This
attribute links to the location in the Event.cache() which contains
the observe information. This code snippet will return the
Event.cache element if it exists and if it has at least 1 observed
event (looks like the Event.cache array is not pruned when the last
observer is removed)
Taken from Chuck Hagenbuch
seems to work great so far. It doesn't handle onclick events yet that
have been attached programatically though.
Here's some code snippet from Michael that should do that trick:
$H(Event.cache[$(element)._prototypeEventID.first()]).findAll(function(h) {
return h.key && h.value.flatten().size(); });
attributes to deal with this issue. People can use it until IMP is
fixed.
http://userscripts.org/scripts/show/29539
(vBulletin) have an issue with this double access key issue. I need a
solution ASAP! if anyone can come up with it.
template to render the bottom navbars, we still get doubled accesskeys.
Patch ⇒
Milestone ⇒
Assigned to
Assigned to Chuck Hagenbuch
Queue ⇒ Horde Base
Summary ⇒ Accesskeys in Firefox 3
Type ⇒ Bug
Priority ⇒ 1. Low
State ⇒ Assigned
page, then pressing the accesskey will select the first matching link
instead of following it. This happens on pages where we have top and
bottom navbars, for instance.
We should figure out a way to either never output a second instance of
the same accesskey, or have some javascript that post-processes links
and removes duplicates.