summaryrefslogtreecommitdiff
path: root/systrace/catapult/third_party/polymer/components/iron-jsonp-library/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'systrace/catapult/third_party/polymer/components/iron-jsonp-library/README.md')
-rw-r--r--systrace/catapult/third_party/polymer/components/iron-jsonp-library/README.md51
1 files changed, 0 insertions, 51 deletions
diff --git a/systrace/catapult/third_party/polymer/components/iron-jsonp-library/README.md b/systrace/catapult/third_party/polymer/components/iron-jsonp-library/README.md
deleted file mode 100644
index c93e1d6..0000000
--- a/systrace/catapult/third_party/polymer/components/iron-jsonp-library/README.md
+++ /dev/null
@@ -1,51 +0,0 @@
-
-<!---
-
-This README is automatically generated from the comments in these files:
-iron-jsonp-library.html
-
-Edit those files, and our readme bot will duplicate them over here!
-Edit this file, and the bot will squash your changes :)
-
-The bot does some handling of markdown. Please file a bug if it does the wrong
-thing! https://github.com/PolymerLabs/tedium/issues
-
--->
-
-[![Build status](https://travis-ci.org/PolymerElements/iron-jsonp-library.svg?branch=master)](https://travis-ci.org/PolymerElements/iron-jsonp-library)
-
-_[Demo and API docs](https://elements.polymer-project.org/elements/iron-jsonp-library)_
-
-
-## &lt;iron-jsonp-library&gt;
-
-Loads specified jsonp library.
-
-Example:
-
-```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>
-```
-
-Will emit 'api-load' event when loaded, and set 'loaded' to true
-
-Implemented by Polymer.IronJsonpLibraryBehavior. Use it
-to create specific library loader elements.
-
-
-
-## 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.
-
-