Skip to content
This repository has been archived by the owner on Dec 19, 2024. It is now read-only.

Commit

Permalink
Add @OverRide, remove @attribute/@group/@hero/@homepage (#44)
Browse files Browse the repository at this point in the history
  • Loading branch information
aomarks authored Jun 19, 2019
1 parent 4f03d25 commit c87bee3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions iron-iconset.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ import {dom} from '@polymer/polymer/lib/legacy/polymer.dom.js';
Polymer({

is: 'iron-iconset',
/** @override */
_template: null,

properties: {
Expand All @@ -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
*/
Expand Down Expand Up @@ -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();
Expand Down

0 comments on commit c87bee3

Please sign in to comment.