load-iframe

1.0.2-alpha.9 • Public • Published

load-iframe [![CI][ci-badge]][ci-link]

Load an iframe by appending an iframe tag to the DOM.

Installation

$ npm install load-iframe
$ component install segmentio/load-iframe

Example

var load = require('load-iframe');

load('//www.google.com');

Loads Google in the iframe.

var load = require('load-iframe');

load({
  http  : 'http://www.google.com',
  https : 'https://ssl.google.com'
});

Loads in the right URL depending on the protocol.

API

loadIframe(src || options, callback)

Load the given iframe either by passing a src string, or an options object:

{
    src: '//example.com', // same as `src` string
    http: 'http://example.com', // `src` to load if the protocol is `http:`
    https: 'https://ssl.example.com' // `src` to load if the protocol is `https:`
}

Publish

Update the Package.json version to version you want to publish and then as soon as your changed merged to master and your head/latest commit message starts with "Publish" , it will publish the mentioned version

License

MIT

/load-iframe/

    Package Sidebar

    Install

    npm i load-iframe

    Weekly Downloads

    46,346

    Version

    1.0.2-alpha.9

    License

    MIT

    Unpacked Size

    7.52 kB

    Total Files

    8

    Last publish

    Collaborators

    • ndhoule
    • segment-admin