]> source.dussan.org Git - jquery-ui.git/commitdiff
Tooltip: Added some comments.
authorScott González <scott.gonzalez@gmail.com>
Sun, 29 May 2011 23:41:57 +0000 (19:41 -0400)
committerScott González <scott.gonzalez@gmail.com>
Sun, 29 May 2011 23:41:57 +0000 (19:41 -0400)
ui/jquery.ui.tooltip.js

index 7722e6472881bf454f7798a34c5ba029ae805946..8aba5974a487899b8a370f4eea21833cae9f35fd 100644 (file)
@@ -83,6 +83,9 @@ $.widget( "ui.tooltip", {
                }
 
                // if we have a title, clear it to prevent the native tooltip
+               // we do this before the disabled check to prevent native tooltips
+               // even when disabled
+               // TODO: the above doesn't work since ._bind() does a disabled check
                // we have to check first to avoid defining a title if none exists
                // (we don't want to cause an element to start matching [title])
                // TODO: document why we don't use .removeAttr()
@@ -90,7 +93,6 @@ $.widget( "ui.tooltip", {
                        target.attr( "title", "" );
                }
 
-               // TODO: why is this check after we clear the title?
                if ( this.options.disabled ) {
                        return;
                }