Skip to content

Commit

Permalink
Merge pull request box#55 from Box/add_focusin_focusout
Browse files Browse the repository at this point in the history
Add focusin and focusout events
  • Loading branch information
j3tan committed Mar 2, 2015
2 parents 8fadf39 + d8ba86c commit 5a359d2
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 5a359d2

Please sign in to comment.