Skip to content

Commit

Permalink
Fix loading spinner timing.
Browse files Browse the repository at this point in the history
  • Loading branch information
Saulis committed Mar 14, 2016
1 parent 1074a0b commit 075bfd5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions iron-data-table.html
Original file line number Diff line number Diff line change
Expand Up @@ -762,8 +762,6 @@
} else {
this.$.list._collection.pmap[item] = index;
}

this._pagesLoading--;
}

// resize required for variable row height items.
Expand All @@ -772,6 +770,8 @@
this.debounce('resizing', function() {
this.$.list.notifyResize();
}.bind(this), 100);

this._pagesLoading--;
}.bind(this);

var err = function() {
Expand Down

0 comments on commit 075bfd5

Please sign in to comment.