jquery-hoverIntent-rails 1.8.1 → 1.8.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f059674654573325231ba32e8fff732ba1956bf8
|
|
4
|
+
data.tar.gz: 087d355dc42e43f1d2fca22dc2502221b25ad7b7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f471a7133c2299e596bf4407c7f21478932fe7e4eba1b0464eca8e6ab4bc244e492d6937e3047ea16cfeb645cb3cf07c64ebdae409f9ee5dc3ce2a5b786703f8
|
|
7
|
+
data.tar.gz: 8ee1faa31a868d816a08b3ca0f5b0c29a340485286c9afc9e62b814bfb82934aa7fe7f6e0f80fae06d539c768d4fabe33eab2380f6a461c2e835ff2c4fc37288
|
|
@@ -80,9 +80,13 @@
|
|
|
80
80
|
|
|
81
81
|
// triggers given `out` function at configured `timeout` after a mouseleave and clears state
|
|
82
82
|
var delay = function(ev,$el,s,out) {
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
83
|
+
var hoverIntent = $el.data('hoverIntent');
|
|
84
|
+
|
|
85
|
+
if (typeof hoverIntent !== 'undefined') {
|
|
86
|
+
delete hoverIntent[s.id];
|
|
87
|
+
return out.apply($el[0],[ev]);
|
|
88
|
+
}
|
|
89
|
+
};
|
|
86
90
|
|
|
87
91
|
$.fn.hoverIntent = function(handlerIn,handlerOut,selector) {
|
|
88
92
|
// instance ID, used as a key to store and retrieve state information on an element
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jquery-hoverIntent-rails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.8.
|
|
4
|
+
version: 1.8.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Alrick Deillon
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-
|
|
11
|
+
date: 2015-12-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: A wrapper for jquery hoverIntent plugin
|
|
14
14
|
email:
|