id,summary,reporter,owner,description,type,status,priority,milestone,component,version,resolution,keywords,cc,blocking,blockedby
2141,Make shortcut syntax for the focus and the blur event,DarkAngelBGE,,"Possible usage:

$obj.focus(
 function() {}, // for focus event
 function() {} // for blur event
);

Something like:

(function($) {
    var _focus = $.fn.focus;
    $.fn.focus = function(focus, blur) {
        _focus.call(this, focus);
        if (blur) {
            this.blur(blur);
        }
    };
}(jQuery));

not tested

This is really like the .hover(callback, callback) thing :)",enhancement,closed,minor,1.2.4,event,1.2.1,wontfix,,,,
