Skip to content

Commit 9e8fe78

Browse files
committed
fix #9
Use `this` insteed, `e` is the element that started the bubbling
1 parent b186cf6 commit 9e8fe78

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed

demo/js/jquery.sliphover.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/jquery.sliphover.js

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* sliphover v2.0.1
2+
* sliphover v2.0.2
33
* require jquery 1.7+
44
* wayou June 24, 2014,
55
* MIT License
@@ -28,7 +28,7 @@
2828
this.settings = $.extend({}, defaults, options);
2929
this._defaults = defaults;
3030
this._name = pluginName;
31-
this.version = 'v1.2.0';
31+
this.version = 'v2.0.2';
3232
this.init();
3333
}
3434

@@ -39,7 +39,10 @@
3939

4040
//create the overlay container each time the mouse enters
4141
$(this.element).off('mouseenter.sliphover', target).on('mouseenter.sliphover', target, function(event) {
42-
var $element = $(event.target),
42+
//fix #9 https://github.com/wayou/SlipHover/issues/9
43+
//use this instead of event.target for sometimes the event.target is not retriving the right target we want
44+
//http://stackoverflow.com/questions/9838137/event-target-jquery-on-mousedown-up-is-not-giving-the-dom-specified-by-selecto
45+
var $element = $(this),
4346
$overlayContainer = that.createContainer($element);
4447

4548
$overlayContainer.off('mouseenter.sliphover mouseleave.sliphover').on('mouseenter.sliphover mouseleave.sliphover', function(event) {

src/jquery.sliphover.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)