update components

This commit is contained in:
Luke Pulverenti 2015-06-25 21:13:51 -04:00
parent c4dadd58bd
commit cee4794cd3
64 changed files with 1378 additions and 297 deletions

View file

@ -1,6 +1,6 @@
{
"name": "iron-meta",
"version": "1.0.2",
"version": "1.0.3",
"keywords": [
"web-components",
"polymer"
@ -26,11 +26,11 @@
"webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0"
},
"homepage": "https://github.com/polymerelements/iron-meta",
"_release": "1.0.2",
"_release": "1.0.3",
"_resolution": {
"type": "version",
"tag": "v1.0.2",
"commit": "85d0258556a25a34dbe98657ce9f40d878d4c5bf"
"tag": "v1.0.3",
"commit": "91529259262b0d8f33fed44bc3fd47aedf35cb04"
},
"_source": "git://github.com/polymerelements/iron-meta.git",
"_target": "^1.0.0",

View file

@ -1,6 +1,6 @@
{
"name": "iron-meta",
"version": "1.0.2",
"version": "1.0.3",
"keywords": [
"web-components",
"polymer"

View file

@ -165,8 +165,8 @@ Or, in a Polymer element, you can include a meta in your template:
* Retrieves meta data value by key.
*
* @method byKey
* @param {String} key The key of the meta-data to be returned.
* @returns *
* @param {string} key The key of the meta-data to be returned.
* @return {*}
*/
byKey: function(key) {
return this._metaData && this._metaData[key];
@ -304,6 +304,8 @@ Or, in a Polymer element, you can include a meta in your template:
/**
* Retrieves meta data value by key.
* @param {string} key The key of the meta-data to be returned.
* @return {*}
*/
byKey: function(key) {
return this._metaData && this._metaData[key];