├── .editorconfig ├── .github └── workflows │ ├── ci.yaml │ └── package-size-report.yaml ├── .gitignore ├── .prettierignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── examples ├── amp.html ├── basic.html ├── embed-pym.html ├── embed.html ├── pym.html └── server.js ├── jsconfig.json ├── package.json ├── src ├── auto.js ├── constants.js ├── framer.js ├── frames.js └── index.js └── tests ├── public ├── auto-embed.html ├── auto.html ├── embed.html ├── index.html ├── init-auto.js ├── init-framer-pym.js ├── init-framer.js ├── observe-iframe.js ├── pym-embed.html ├── pym.html ├── pym.js ├── send-frame-height-controller.html ├── send-frame-height.html ├── send-height-on-framer-init.html ├── send-height-on-load.html ├── send-height-on-poll.html ├── send-height-on-resize.html └── style.css ├── server.js └── test.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmurphy/frames/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmurphy/frames/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/package-size-report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmurphy/frames/HEAD/.github/workflows/package-size-report.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmurphy/frames/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmurphy/frames/HEAD/.prettierignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmurphy/frames/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmurphy/frames/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmurphy/frames/HEAD/README.md -------------------------------------------------------------------------------- /examples/amp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmurphy/frames/HEAD/examples/amp.html -------------------------------------------------------------------------------- /examples/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmurphy/frames/HEAD/examples/basic.html -------------------------------------------------------------------------------- /examples/embed-pym.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmurphy/frames/HEAD/examples/embed-pym.html -------------------------------------------------------------------------------- /examples/embed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmurphy/frames/HEAD/examples/embed.html -------------------------------------------------------------------------------- /examples/pym.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmurphy/frames/HEAD/examples/pym.html -------------------------------------------------------------------------------- /examples/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmurphy/frames/HEAD/examples/server.js -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmurphy/frames/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmurphy/frames/HEAD/package.json -------------------------------------------------------------------------------- /src/auto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmurphy/frames/HEAD/src/auto.js -------------------------------------------------------------------------------- /src/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmurphy/frames/HEAD/src/constants.js -------------------------------------------------------------------------------- /src/framer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmurphy/frames/HEAD/src/framer.js -------------------------------------------------------------------------------- /src/frames.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmurphy/frames/HEAD/src/frames.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmurphy/frames/HEAD/src/index.js -------------------------------------------------------------------------------- /tests/public/auto-embed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmurphy/frames/HEAD/tests/public/auto-embed.html -------------------------------------------------------------------------------- /tests/public/auto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmurphy/frames/HEAD/tests/public/auto.html -------------------------------------------------------------------------------- /tests/public/embed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmurphy/frames/HEAD/tests/public/embed.html -------------------------------------------------------------------------------- /tests/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmurphy/frames/HEAD/tests/public/index.html -------------------------------------------------------------------------------- /tests/public/init-auto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmurphy/frames/HEAD/tests/public/init-auto.js -------------------------------------------------------------------------------- /tests/public/init-framer-pym.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmurphy/frames/HEAD/tests/public/init-framer-pym.js -------------------------------------------------------------------------------- /tests/public/init-framer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmurphy/frames/HEAD/tests/public/init-framer.js -------------------------------------------------------------------------------- /tests/public/observe-iframe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmurphy/frames/HEAD/tests/public/observe-iframe.js -------------------------------------------------------------------------------- /tests/public/pym-embed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmurphy/frames/HEAD/tests/public/pym-embed.html -------------------------------------------------------------------------------- /tests/public/pym.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmurphy/frames/HEAD/tests/public/pym.html -------------------------------------------------------------------------------- /tests/public/pym.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmurphy/frames/HEAD/tests/public/pym.js -------------------------------------------------------------------------------- /tests/public/send-frame-height-controller.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmurphy/frames/HEAD/tests/public/send-frame-height-controller.html -------------------------------------------------------------------------------- /tests/public/send-frame-height.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmurphy/frames/HEAD/tests/public/send-frame-height.html -------------------------------------------------------------------------------- /tests/public/send-height-on-framer-init.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmurphy/frames/HEAD/tests/public/send-height-on-framer-init.html -------------------------------------------------------------------------------- /tests/public/send-height-on-load.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmurphy/frames/HEAD/tests/public/send-height-on-load.html -------------------------------------------------------------------------------- /tests/public/send-height-on-poll.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmurphy/frames/HEAD/tests/public/send-height-on-poll.html -------------------------------------------------------------------------------- /tests/public/send-height-on-resize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmurphy/frames/HEAD/tests/public/send-height-on-resize.html -------------------------------------------------------------------------------- /tests/public/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmurphy/frames/HEAD/tests/public/style.css -------------------------------------------------------------------------------- /tests/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmurphy/frames/HEAD/tests/server.js -------------------------------------------------------------------------------- /tests/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmurphy/frames/HEAD/tests/test.js --------------------------------------------------------------------------------