diff options
author | kborchers <kris.borchers@gmail.com> | 2011-10-11 00:06:09 -0500 |
---|---|---|
committer | kborchers <kris.borchers@gmail.com> | 2011-10-11 00:06:09 -0500 |
commit | f24ab94f86ddcc4382800f6f1664320dd31a935c (patch) | |
tree | ce12c2e7b65a222b6905c36b83407d9b3c3923cf /ui/jquery.ui.popup.js | |
parent | fa26847f910ec32bf59fe6dc839e81e5dfce8247 (diff) | |
download | jquery-ui-f24ab94f86ddcc4382800f6f1664320dd31a935c.tar.gz jquery-ui-f24ab94f86ddcc4382800f6f1664320dd31a935c.zip |
Popup: Removed the focusout and focusin handlers which are nolonger necessary. Also updated the tooltip style demo to have a little more interactive content.
Diffstat (limited to 'ui/jquery.ui.popup.js')
-rw-r--r-- | ui/jquery.ui.popup.js | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/ui/jquery.ui.popup.js b/ui/jquery.ui.popup.js index ce7a565db..4726f3a61 100644 --- a/ui/jquery.ui.popup.js +++ b/ui/jquery.ui.popup.js @@ -109,19 +109,6 @@ $.widget( "ui.popup", { } this._bind({ - focusout: function( event ) { - // use a timer to allow click to clear it and letting that - // handle the closing instead of opening again - this.closeTimer = this._delay( function() { - this.close( event ); - }, 100); - }, - focusin: function( event ) { - clearTimeout( this.closeTimer ); - } - }); - - this._bind({ // TODO only triggered on element if it can receive focus // bind to document instead? // either element itself or a child should be focusable |