diff options
author | Scott González <scott.gonzalez@gmail.com> | 2011-05-28 17:55:45 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2011-05-28 17:55:45 -0400 |
commit | 215599309660733221d51830d12f2ed117961b36 (patch) | |
tree | b589b19adc2eeaa2cd8bdd793bc655b78b45c904 /ui/jquery.ui.tooltip.js | |
parent | 4dbfdcede3878415dbf5c777e9e2ce17c6916edc (diff) | |
download | jquery-ui-215599309660733221d51830d12f2ed117961b36.tar.gz jquery-ui-215599309660733221d51830d12f2ed117961b36.zip |
Tooltip: Fixed tooltipClass option and added test.
Diffstat (limited to 'ui/jquery.ui.tooltip.js')
-rw-r--r-- | ui/jquery.ui.tooltip.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/jquery.ui.tooltip.js b/ui/jquery.ui.tooltip.js index 343c1d055..a6d3b1dd3 100644 --- a/ui/jquery.ui.tooltip.js +++ b/ui/jquery.ui.tooltip.js @@ -142,7 +142,7 @@ $.widget( "ui.tooltip", { id: id, role: "tooltip" }) - .addClass( "ui-tooltip ui-widget ui-corner-all ui-widget-content" + + .addClass( "ui-tooltip ui-widget ui-corner-all ui-widget-content " + ( this.options.tooltipClass || "" ) ); $( "<div>" ) .addClass( "ui-tooltip-content" ) |