PolymerElements / iron-selector

Manages a list of elements that can be selected
32 stars 55 forks source link

iron-selector.items is not changed during "iron-items-changed" event fired #89

Closed sgoryachkin closed 8 years ago

sgoryachkin commented 8 years ago

iron-selector.items is not changed during "iron-items-changed" event fired because the event is fired before this._updateItems() in Polymer.IronSelectableBehavior._observeItems. I think need to swap this._updateItems() and this.fire('iron-items-changed', ...) in _observeItems

pull request: https://github.com/PolymerElements/iron-selector/pull/90

sgoryachkin commented 8 years ago

This issue was fixed in pull request: https://github.com/PolymerElements/iron-selector/pull/100