We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76bc595 commit 122577cCopy full SHA for 122577c
1 file changed
src/js/bulk-optimization.js
@@ -211,12 +211,12 @@
211
}
212
});
213
214
- jQuery('.tooltip').on('mouseenter', function(){
+ jQuery('.tooltip').mouseenter(function(){
215
jQuery(this).find('.tip').show()
216
clearTimeout('.tooltip')
217
})
218
219
- jQuery('.tooltip').on('mouseleave', function(){
+ jQuery('.tooltip').mouseleave(function(){
220
var that = this
221
toolTip = setTimeout(function() {
222
if (jQuery(that).find('.tip').is(':visible')) {
@@ -225,7 +225,7 @@
225
}, 150)
226
227
228
- jQuery('.tip').on('mouseenter', function(){
+ jQuery('.tip').mouseenter(function(){
229
clearTimeout(toolTip)
230
231
0 commit comments