Class CKEDITOR.keystrokeHandler
Defined in: plugins/keystrokes/plugin.js.
Constructor Attributes | Constructor Name and Description |
---|---|
CKEDITOR.keystrokeHandler(editor)
Controls keystrokes typing in an editor instance.
|
Field Attributes | Field Name and Description |
---|---|
List of keystrokes that should be blocked if not defined at
keystrokes.
|
|
List of keystrokes associated to commands.
|
Method Attributes | Method Name and Description |
---|---|
attach(domObject)
Attaches this keystroke handle to a DOM object.
|
Class Detail
CKEDITOR.keystrokeHandler(editor)
Since:
3.0
Controls keystrokes typing in an editor instance.
- Parameters:
- {CKEDITOR.editor} editor
- The editor instance.
Field Detail
{Object}
blockedKeystrokes
Since:
3.0
List of keystrokes that should be blocked if not defined at
keystrokes. In this way it is possible to block the default
browser behavior for those keystrokes.
{Object}
keystrokes
Since:
3.0
List of keystrokes associated to commands. Each entry points to the
command to be executed.
Method Detail
{Undefined}
attach(domObject)
Since:
3.0
Attaches this keystroke handle to a DOM object. Keystrokes typed
* over this object will get handled by this keystrokeHandler.
- Parameters:
- {CKEDITOR.dom.domObject} domObject
- The DOM object to attach to.