We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a83fd54 commit cd5c736Copy full SHA for cd5c736
ui/tooltip.js
@@ -108,6 +108,17 @@ $.widget( "ui.tooltip", {
108
.appendTo( this.document[ 0 ].body );
109
},
110
111
+ _elementsFromClassKey: function( classKey ) {
112
+ switch( classKey ) {
113
+ case "ui-tooltip":
114
+ return this.element.find( "ui-tooltip" );
115
+ case "ui-tooltip-title":
116
+ return this.element.find( "ui-tooltip-title" );
117
+ default:
118
+ return this._superApply( arguments );
119
+ }
120
+ },
121
+
122
_setOption: function( key, value ) {
123
var that = this;
124
0 commit comments