Closed Bug 442117 Opened 16 years ago Closed 16 years ago

should it be onkeypress or oncommand?

Categories

(Developer Documentation Graveyard :: General, defect)

x86
Windows Vista
defect
Not set
normal

Tracking

(Not tracked)

RESOLVED FIXED

People

(Reporter: sspitzer, Unassigned)

References

()

Details

should it be onkeypress or oncommand?

from http://developer.mozilla.org/en/docs/XUL_Tutorial:Keyboard_Shortcuts

The first way is the simplest and just requires that you use the keypress event handler on the key element. When the user presses the key, the script will be invoked. An example is shown below:

<keyset>
  <key id="copy-key" modifiers="accel" key="C" oncommand="DoCopy();"/>
</keyset>

notice the text says "keypress event" but the code says "oncommand"

should it be:  "the command event handler on the key element."

from the original http://www.xulplanet.com/tutorials/xultu/keyshort.html, we had:

<keyset>
  <key id="copy-key" modifiers="accel" key="C" onkeypress="DoCopy();"/>
</keyset>
It should be the command event.
so:

"use the keypress event handler on the key element."

should be:

"use the command event handler on the key element."

fixed, thanks Neil!

(next time I won't log a bug for something like this.)
Status: NEW → RESOLVED
Closed: 16 years ago
Resolution: --- → FIXED
Component: Documentation Requests → Documentation
Component: Documentation → General
Product: Mozilla Developer Network → Developer Documentation
You need to log in before you can comment on or make changes to this bug.