diff --git a/bower.json b/bower.json index 346c7c7..a714abb 100644 --- a/bower.json +++ b/bower.json @@ -30,6 +30,9 @@ "webcomponentsjs": "webcomponents/webcomponentsjs#^1.0.0", "web-component-tester": "^6.0.0" }, + "resolutions": { + "webcomponentsjs": "^1.0.0" + }, "variants": { "1.x": { "dependencies": { @@ -47,9 +50,24 @@ "resolutions": { "webcomponentsjs": "^0.7" } + }, + "polymer-1.x_iron-meta-2.x": { + "dependencies": { + "polymer": "Polymer/polymer#^1.9", + "iron-meta": "polymerelements/iron-meta#^2.0.0" + }, + "devDependencies": { + "paper-styles": "polymerelements/paper-styles#^1.0.2", + "iron-component-page": "polymerelements/iron-component-page#^1.0.0", + "iron-icon": "polymerelements/iron-icon#^1.0.0", + "promise-polyfill": "polymerlabs/promise-polyfill#^1.0.0", + "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0", + "web-component-tester": "^4.0.0" + }, + "resolutions": { + "iron-meta": "^2.0.0", + "webcomponentsjs": "^0.7" + } } - }, - "resolutions": { - "webcomponentsjs": "^1.0.0" } } diff --git a/iron-iconset-svg.html b/iron-iconset-svg.html index bf72f27..3ca9ed3 100644 --- a/iron-iconset-svg.html +++ b/iron-iconset-svg.html @@ -84,7 +84,13 @@ }, created: function() { - this._meta = new Polymer.IronMeta({type: 'iconset', key: null, value: null}); + var meta = this._meta = document.createElement('iron-meta'); + if (typeof this._meta._enableProperties === "function") { + this._meta._enableProperties(); + } + this._meta.type = 'iconset'; + this._meta.key = null; + this._meta.value = null; }, attached: function() {