Skip to content

Commit 122577c

Browse files
Fixed integration bugs.
1 parent 76bc595 commit 122577c

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/js/bulk-optimization.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -211,12 +211,12 @@
211211
}
212212
});
213213

214-
jQuery('.tooltip').on('mouseenter', function(){
214+
jQuery('.tooltip').mouseenter(function(){
215215
jQuery(this).find('.tip').show()
216216
clearTimeout('.tooltip')
217217
})
218218

219-
jQuery('.tooltip').on('mouseleave', function(){
219+
jQuery('.tooltip').mouseleave(function(){
220220
var that = this
221221
toolTip = setTimeout(function() {
222222
if (jQuery(that).find('.tip').is(':visible')) {
@@ -225,7 +225,7 @@
225225
}, 150)
226226
})
227227

228-
jQuery('.tip').on('mouseenter', function(){
228+
jQuery('.tip').mouseenter(function(){
229229
clearTimeout(toolTip)
230230
})
231231

0 commit comments

Comments
 (0)