Skip to content

Commit 6e0bdc4

Browse files
committed
Updated version number and README.md
NOTE: detect-element-resize.js changed nothing but the version number, just to mantain the same version number across both versions of the library.
1 parent 6129ed9 commit 6e0bdc4

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

README.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ javascript-detect-element-resize
44
A Cross-Browser, Event-based, Element Resize Detection.
55

66
In short, this implementation does NOT use an internal timer to detect size changes (as most implementations I found do).
7-
It uses [MutationObservers][4] if supported by the browser, and [overflow and underflow events][2] if not. It also uses the ['onresize' event][5] on IE10 and below.
7+
It uses [overflow and underflow events][2] on most browsers, and the ['onresize' event][5] on IE10 and below.
8+
9+
NOTE: On IE11, due to lack of support for the above events, it only detects changes through a MutationObserver; i.e. only javascript generated resize changes and not CSS pseudo classes e.g. :hover, CSS animations, etc.
810

911
About the libraries
1012
===================
@@ -79,6 +81,11 @@ TODO
7981

8082
Release Notes
8183
=============
84+
v0.4.1
85+
----
86+
87+
- Fix for jQuery 'resize' method overlapping
88+
8289
v0.4
8390
----
8491

detect-element-resize.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* https://github.com/sdecima/javascript-detect-element-resize
55
* Sebastian Decima
66
*
7-
* version: 0.4
7+
* version: 0.4.1
88
**/
99

1010
(function ( $ ) {

jquery.resize.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* https://github.com/sdecima/javascript-detect-element-resize
55
* Sebastian Decima
66
*
7-
* version: 0.4
7+
* version: 0.4.1
88
**/
99

1010
(function ( $ ) {

0 commit comments

Comments
 (0)