From ab223bc88b9484ebdb85c4e34d2e06380bef7b3f Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Mon, 7 Jan 2013 16:58:59 -0500 Subject: [PATCH] These have been converted to jQuery UI tooltip --- js/functions.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/functions.js b/js/functions.js index 6db9788e26..c76b4d6881 100644 --- a/js/functions.js +++ b/js/functions.js @@ -1613,11 +1613,11 @@ $(function() { */ $('span.ajax_notification a, span.ajax_notification button, span.ajax_notification input') .live('mouseover', function () { - $(this).parents('span.ajax_notification').qtip('hide'); + $(this).parents('span.ajax_notification').tooltip('disable'); }); $('span.ajax_notification a, span.ajax_notification button, span.ajax_notification input') .live('mouseout', function () { - $(this).parents('span.ajax_notification').qtip('show'); + $(this).parents('span.ajax_notification').tooltip('enable'); }); });