rescript-iframe-fit-content
v0.0.1
Published
Automatically set the height of the iframe based on the content.
Readme
ReScript Iframe Fit Content
Automatically set the height of the iframe based on the content.
Installation
npm install rescript-iframe-fit-contentThen add rescript-iframe-fit-content to bs-dependencies in your bsconfig.json. A minimal example:
{
"name": "my-thing",
"sources": "src",
"bs-dependencies": ["rescript-iframe-fit-content"]
}Usage
ReScript
iframeElement -> IframeFitContent.makeJavaScript
import * as IframeFitContent from 'rescript-iframe-fit-content'
const iframe = document.getElementById("iframe")
IframeFitContent.make(iframe)See the examples folder.
