File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -75,19 +75,19 @@ $.widget("ui.tooltip", {
75
75
this . current = target ;
76
76
this . currentTitle = target . attr ( "title" ) ;
77
77
var content = this . options . content . call ( target [ 0 ] , function ( response ) {
78
- // IE may instantly serve a cached response, need to give it a chance to finish with _show before that
78
+ // IE may instantly serve a cached response, need to give it a chance to finish with _open before that
79
79
setTimeout ( function ( ) {
80
80
// ignore async responses that come in after the tooltip is already hidden
81
81
if ( self . current == target )
82
- self . _show ( event , target , response ) ;
82
+ self . _open ( event , target , response ) ;
83
83
} , 13 ) ;
84
84
} ) ;
85
85
if ( content ) {
86
- self . _show ( event , target , content ) ;
86
+ self . _open ( event , target , content ) ;
87
87
}
88
88
} ,
89
89
90
- _show : function ( event , target , content ) {
90
+ _open : function ( event , target , content ) {
91
91
if ( ! content )
92
92
return ;
93
93
You can’t perform that action at this time.
0 commit comments