Skip to content

Commit

Permalink
Fix #917: Emit dgrid-cellfocusout from correct element
Browse files Browse the repository at this point in the history
  • Loading branch information
cmaus authored and Kenneth G. Franqueiro committed May 19, 2014
1 parent 76f7f03 commit 8d058bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Keyboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ var Keyboard = declare(null, {
// Expose object representing focused cell or row losing focus, via
// event.cell or event.row; which is set depends on cellNavigation.
event[cellOrRowType] = this[cellOrRowType](focusedNode);
on.emit(element, "dgrid-cellfocusout", event);
on.emit(focusedNode, "dgrid-cellfocusout", event);
}
focusedNode = this[focusedNodeProperty] = element;

Expand Down

0 comments on commit 8d058bb

Please sign in to comment.