Continue qtip removal (not sure we needed a hard-coded style here, or even a specific style)

This commit is contained in:
Marc Delisle 2013-01-08 17:32:31 -05:00
parent 36c33f5995
commit 214e4a65cf

View File

@ -2859,12 +2859,11 @@ function PMA_showHints($div)
$div = $("body");
}
$div.find('.pma_hint').each(function () {
$(this).children('img').qtip({
content: $(this).children('span').html(),
show: { delay: 0 },
hide: { delay: 1000 },
style: { background: '#ffffcc' }
});
PMA_tooltip(
$(this).children('img'),
'img',
$(this).children('span').html()
);
});
}