Fix error reports 974/1833: cannot call method on tooltip
Signed-off-by: Atul Pratap Singh <atulpratapsingh05@gmail.com>
This commit is contained in:
parent
987ab29858
commit
54ee8faa96
@ -1752,10 +1752,14 @@ $(function () {
|
||||
*/
|
||||
$('span.ajax_notification a, span.ajax_notification button, span.ajax_notification input')
|
||||
.live('mouseover', function () {
|
||||
$(this).parents('span.ajax_notification').tooltip('disable');
|
||||
if ($(this).parents('span.ajax_notification').is(':data(tooltip)')) {
|
||||
$(this).parents('span.ajax_notification').tooltip('disable');
|
||||
}
|
||||
})
|
||||
.live('mouseout', function () {
|
||||
$(this).parents('span.ajax_notification').tooltip('enable');
|
||||
if ($(this).parents('span.ajax_notification').is(':data(tooltip)')) {
|
||||
$(this).parents('span.ajax_notification').tooltip('enable');
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user