Merge pull request #580 from ProSr/master

Fixed that minor issue ;)
This commit is contained in:
Ilya Kantor 2018-11-03 19:32:56 +03:00 committed by GitHub
commit e8517338a9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 11 additions and 11 deletions

View file

@ -60,7 +60,7 @@ These properties are rarely needed, but still they are the "most outer" geometry
The `offsetParent` is the nearest ancestor that is:
1. CSS-positioned (`position` is `absolute`, `relative` or `fixed`),
1. CSS-positioned (`position` is `absolute`, `relative`, `fixed` or `sticky`),
2. or `<td>`, `<th>`, `<table>`,
2. or `<body>`.

View file

@ -101,6 +101,6 @@ class HoverIntent {
elem.removeEventListener('mousemove', this.onMouseMove);
elem.removeEventListener('mouseover', this.onMouseOver);
elem.removeEventListener('mouseout', this.onMouseOut);
};
}
}

View file

@ -45,6 +45,6 @@ class HoverIntent {
destroy() {
/* your code to "disable" the functionality, remove all handlers */
};
}
}