@polymer/iron-jsonp-library

WebJar for @polymer/iron-jsonp-library

License

License

BSD 3-Clause
Categories

Categories

JSON Data
GroupId

GroupId

org.webjars.npm
ArtifactId

ArtifactId

polymer__iron-jsonp-library
Last Version

Last Version

3.0.1
Release Date

Release Date

Type

Type

jar
Description

Description

@polymer/iron-jsonp-library
WebJar for @polymer/iron-jsonp-library
Project URL

Project URL

http://webjars.org
Source Code Management

Source Code Management

https://github.com/PolymerElements/iron-jsonp-library

Download polymer__iron-jsonp-library

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.npm/polymer__iron-jsonp-library/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>polymer__iron-jsonp-library</artifactId>
    <version>3.0.1</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/polymer__iron-jsonp-library/
implementation 'org.webjars.npm:polymer__iron-jsonp-library:3.0.1'
// https://jarcasting.com/artifacts/org.webjars.npm/polymer__iron-jsonp-library/
implementation ("org.webjars.npm:polymer__iron-jsonp-library:3.0.1")
'org.webjars.npm:polymer__iron-jsonp-library:jar:3.0.1'
<dependency org="org.webjars.npm" name="polymer__iron-jsonp-library" rev="3.0.1">
  <artifact name="polymer__iron-jsonp-library" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='polymer__iron-jsonp-library', version='3.0.1')
)
libraryDependencies += "org.webjars.npm" % "polymer__iron-jsonp-library" % "3.0.1"
[org.webjars.npm/polymer__iron-jsonp-library "3.0.1"]

Dependencies

compile (1)

Group / Artifact Type Version
org.webjars.npm : polymer__polymer jar [3.0.0,4)

Project Modules

There are no modules declared in this project.

Published on NPM Build status Published on webcomponents.org

<iron-jsonp-library>

Loads specified jsonp library.

See: Documentation, Demo.

Polymer.IronJsonpLibraryBehavior

Polymer.IronJsonpLibraryBehavior loads a jsonp library. Multiple components can request same library, only one copy will load.

Some libraries require a specific global function be defined. If this is the case, specify the callbackName property.

You should use an HTML Import to load library dependencies when possible instead of using this element.

Usage

Installation

npm install --save @polymer/iron-jsonp-library

In an html file

<html>
  <head>
    <script type="module">
      import '@polymer/polymer/lib/elements/dom-bind.js';
      import '@polymer/iron-jsonp-library/iron-jsonp-library.js';
    </script>
  </head>
  <body>
    <dom-bind>
      <template>
        <iron-jsonp-library
            library-url="https://apis.google.com/js/plusone.js?onload=%%callback%%"
            notify-event="api-load"
            library-loaded="{{loaded}}">
        </iron-jsonp-library>
        <span>Library Loaded: [[loaded]]</span>
      </template>
    </dom-bind>
  </body>
</html>

In a Polymer 3 element

import {PolymerElement, html} from '@polymer/polymer';
import '@polymer/iron-jsonp-library/iron-jsonp-library.js';

class SampleElement extends PolymerElement {
  static get template() {
    return html`
      <iron-jsonp-library
            library-url="https://apis.google.com/js/plusone.js?onload=%%callback%%"
            notify-event="api-load"
            library-loaded="{{loaded}}">
        </iron-jsonp-library>
        <span>Library Loaded: [[loaded]]</span>
    `;
  }
}
customElements.define('sample-element', SampleElement);

Contributing

If you want to send a PR to this element, here are the instructions for running the tests and demo locally:

Installation

git clone https://github.com/PolymerElements/iron-jsonp-library
cd iron-jsonp-library
npm install
npm install -g polymer-cli

Running the demo locally

polymer serve --npm
open http://127.0.0.1:<port>/demo/

Running the tests

polymer test --npm
org.webjars.npm

Versions

Version
3.0.1