Skip to content

Commit

Permalink
Fix #41
Browse files Browse the repository at this point in the history
  • Loading branch information
blasten committed Jul 27, 2015
1 parent 283c08b commit 4f6ec4c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion iron-list.html
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@
/**
* A map between an item key and its physical item index
*/
_physicalIndexForKey: {},
_physicalIndexForKey: null,

/**
* The average scroll size
Expand Down Expand Up @@ -733,6 +733,7 @@
this._physicalTop = 0;
this._virtualCount = this.items ? this.items.length : 0;
this._collection = this.items ? Polymer.Collection.get(this.items) : null;
this._physicalIndexForKey = {};

// scroll to the top
this._resetScrollPosition(0);
Expand Down

0 comments on commit 4f6ec4c

Please sign in to comment.