From c87bee312a871e43082f31286b290a9e7c98f888 Mon Sep 17 00:00:00 2001 From: Alexander Marks Date: Tue, 18 Jun 2019 18:10:35 -0700 Subject: [PATCH] Add @override, remove @attribute/@group/@hero/@homepage (#44) --- iron-iconset.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/iron-iconset.js b/iron-iconset.js index d2976bb..73f3bbe 100644 --- a/iron-iconset.js +++ b/iron-iconset.js @@ -71,6 +71,7 @@ import {dom} from '@polymer/polymer/lib/legacy/polymer.dom.js'; Polymer({ is: 'iron-iconset', + /** @override */ _template: null, properties: { @@ -88,8 +89,6 @@ Polymer({ /** * The width of the iconset image. This must only be specified if the * icons are arranged into separate rows inside the image. - * - * @attribute width * @type number * @default 0 */ @@ -133,10 +132,12 @@ Polymer({ style: 'display: none;' }, + /** @override */ created: function() { this._meta = new IronMeta({type: 'iconset', key: null, value: null}); }, + /** @override */ ready: function() { // theme data must exist at ready-time this._themes = this._mapThemes();