googlearchive / paper-radio-group

A group of radio buttons
6 stars 1 forks source link

_resetTabindices called before child items are loaded. #17

Open treg opened 7 years ago

treg commented 7 years ago

adding the following fixes the issue:

  attached: function () {
    // See polymer#4009 for more details.
    Polymer.RenderStatus.afterNextRender(this, function () {
      this._resetTabindices()
    })
  },