Fix error reports 974/1833: cannot call method on tooltip

Signed-off-by: Atul Pratap Singh <atulpratapsingh05@gmail.com>
This commit is contained in:
Atul Pratap Singh 2014-03-01 23:36:45 +05:30
parent 987ab29858
commit 54ee8faa96

View File

@ -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');
}
});
});