Skip to content

Commit

Permalink
[BUG #8035] show documentation for event normalization methods
Browse files Browse the repository at this point in the history
  • Loading branch information
danielwagner committed Jan 31, 2014
1 parent 318b137 commit 7682a35
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
7 changes: 5 additions & 2 deletions component/standalone/website/api/Data.js
Expand Up @@ -386,14 +386,17 @@ var Data = q.define({
desc : "",
events : this._getEvents(ast),
fileName : ast.attributes.fullName,
group : ast.attributes.group || "Extras",
"static": []
group : ast.attributes.group || "Extras"
};

this.__data[moduleName].member = Data.getByType(ast, "methods").children.filter(function(method) {
return !Data.__isInternal(method);
});

this.__data[moduleName].static = Data.getByType(ast, "methods-static").children.filter(function(method) {
return !Data.__isInternal(method);
});

var desc = Data.getByType(ast, "desc");
if (desc && desc.attributes && desc.attributes.text) {
this.__data[moduleName].desc = desc.attributes.text;
Expand Down
3 changes: 3 additions & 0 deletions framework/source/class/qx/module/event/Keyboard.js
Expand Up @@ -138,6 +138,7 @@ qx.Bootstrap.define("qx.module.event.Keyboard", {
* for the "keyup" event and emitting the missing event if necessary
*
* @param element {Element} Target element
* @internal
*/
registerInputFix : function(element) {
if (element.type === "text" || element.type === "password" || element.type === "textarea")
Expand All @@ -151,7 +152,9 @@ qx.Bootstrap.define("qx.module.event.Keyboard", {

/**
* Removes the IE9 input event fix
*
* @param element {Element} target element
* @internal
*/
unregisterInputFix : function(element) {
if (element.__inputFix && !qxWeb(element).hasListener("input")) {
Expand Down

0 comments on commit 7682a35

Please sign in to comment.