Skip to content

Commit

Permalink
Onmouseover events for the cells
Browse files Browse the repository at this point in the history
  • Loading branch information
pphod committed Sep 2, 2018
1 parent d1182e8 commit 0a9567e
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions dist/js/jquery.jexcel.js
Original file line number Diff line number Diff line change
Expand Up @@ -950,6 +950,15 @@ var methods = {
}
}
}

// On mouse over event for cells
if ($.fn.jexcel.ignoreEvents != true) {
if ($.fn.jexcel.defaults[id].onmouseover) {
if (typeof($.fn.jexcel.defaults[id].onmouseover) == 'function') {
$.fn.jexcel.defaults[id].onmouseover($('#' + $.fn.jexcel.current), $(e.target));
}
}
}
}
}
}
Expand Down

0 comments on commit 0a9567e

Please sign in to comment.