Controls
Adds controls for an iframe.
chemical.componentAction
takes two arguments, a command (back, forward, reload, or close) and an ID of a iframe component.
The close function hides the iframe and controls.
<input data-frame="my-iframe" is="chemical-input">
<section id="my-controls" is="chemical-controls">
<button onclick="chemical.componentAction('back', 'my-iframe')">Back</button>
<button onclick="chemical.componentAction('forward', 'my-iframe')">Forward</button>
<button onclick="chemical.componentAction('reload', 'my-iframe')">Reload</button>
<button onclick="chemical.componentAction('close', 'my-iframe')">Close</button>
</section>
<iframe data-controls="my-controls" id="my-iframe" is="chemical-iframe"></iframe>
Config (For iFrame)
Property | Value | Description |
---|---|---|
data-controls | string | ID of controls component. |