Skip to content

Commit

Permalink
Add focusin and focusout events
Browse files Browse the repository at this point in the history
fixes box#54
  • Loading branch information
j3tan committed Mar 2, 2015
1 parent 8fadf39 commit d8ba86c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/application.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,10 @@ Box.Application = (function() {

application = new Box.EventTarget(); // base object for application

// Supported events for modules
// Supported events for modules. Only events that bubble properly can be used in T3.
var eventTypes = ['click', 'mouseover', 'mouseout', 'mousedown', 'mouseup',
'mouseenter', 'mouseleave', 'keydown', 'keyup', 'submit', 'change',
'contextmenu', 'dblclick', 'input'];
'contextmenu', 'dblclick', 'input', 'focusin', 'focusout'];

/**
* Reset all state to its default values
Expand Down

0 comments on commit d8ba86c

Please sign in to comment.