r3456 committed - tooltip: replace removeAttr("title") with attr("title", "") to get rid...

r3456 committed - tooltip: replace removeAttr("title") with attr("title", "") to get rid...


Revision: 3456
Author: joern.zaefferer
Date: Sun Nov 15 21:54:50 2009
Log: tooltip: replace removeAttr("title") with attr("title", "") to get rid
of native tooltip in IE, works for the rest, too
http://code.google.com/p/jquery-ui/source/detail?r=3456
Modified:
/branches/dev/ui/jquery.ui.tooltip.js
=======================================
--- /branches/dev/ui/jquery.ui.tooltip.js    Thu Nov 12 23:55:25 2009
+++ /branches/dev/ui/jquery.ui.tooltip.js    Sun Nov 15 21:54:50 2009
@@ -60,7 +60,7 @@
            return;
-        target.removeAttr("title");
+        target.attr("title", "");
        this.tooltipContent.html(content);
        this.tooltip.position($.extend(this.options.position, {
            of: target