/resize-observer

Primary LanguageJavaScriptOtherNOASSERTION

resize-observer

Build Status Coverage Status NPM Version

This library aims to be a faithful implementation and polyfill of the Resize Observer draft.

Installation

resize-observer is available on NPM and Yarn:

npm install resize-observer
yarn add resize-observer

Setup

resize-observer installs itself as window.ResizeObserver when it is required or otherwise put on the page:

require('resize-observer');

const ro = new window.ResizeObserver();
<script src="/path/to/resize-observer.js"></script>
<script type="text/javascript">
  const ro = new window.ResizeObserver();
</script>

NOTE: this behavior (auto-installing) may change in a future version.