Resize Observer Polyfill Versions Save

A polyfill for the Resize Observer API

1.5.0

6 years ago
  • fa717803b27285d98c90eae96c9df689e3112a39 Added Flow types
  • 97e73eca0bfbad10fe904144a0a4af2ce3d75568 Fix issue #26
  • def4c99b0fa547408dd5cb86d05ffff6cd1493dc Fix issue #20
  • 733984ee12e7738daec7044506466483a2eb9f91 Enabled MutationObserver in IE 11 (#19)
  • 10d761da48ab2b32a170c81b134b21ce657e1c7e Partial fix for the issue #17

1.4.2

7 years ago
  • Swapped long polling with Mutation Events as a fall back strategy.

1.4.1

7 years ago
  • 7d5c45b
    • Fixed possible conflict which could've been seen when the ResizeObserver's callback affected content dimensions of elements that were tracked by another observer instances.
    • Fixed an issue with the unobserve method which, when it was invoked on the last observed element, was preventing already gathered active observations from being delivered. This issue was reproducible only when this method was used in a callback of another observer.

1.4.0

7 years ago
  • a8f658e Fix: issue #6 (MutationObserver is no longer used in IE11)
  • 3f9bcb7
    • Fix an issue with svg elements that don't implement the SVGGraphicsElement interface
    • contentRect now has an interface of the DOMRectReadOnly instead of the ClientRect
    • Substitute the "continuousUpdates" option with a subscription for the "transitionend" event

1.3.2

7 years ago
  • Removed extra class for a non-browser environment
  • Imroved code coverage for the node environment

1.3.1

7 years ago
  • Removed module field from the package file due to multiple issues with Webpack 2
  • Added a fallback for a non-browser environment

1.3.0

7 years ago
  • Fix for the issue #5
  • Deprecate the global version
  • Remove dependency on gulp
  • Remove minified versions

1.2.1

7 years ago
  • Added typescript declarations
  • Switched main file to the UMD version

1.2.0

7 years ago
  • Removed idleTimeout static property
  • Improved performance by reducing the number of updates
  • Smaller and more legible bundles because of migration to Rollup