hobodave (owner)

Revisions

gist: 227541 Download_button fork
public
Public Clone URL: git://gist.github.com/227541.git
Embed All Files: show embed
JavaScript #
1
2
3
4
5
6
7
8
9
10
11
(function(){
  function focusInHandler(e){
    Event.element(e).fire("focus:in");
  }
  function focusOutHandler(e){
    Event.element(e).fire("focus:out");
  }
 
    document.observe("focus", focusInHandler);
    document.observe("blur", focusOutHandler);
})();