| Index: chrome/browser/resources/md_history/history_list.js
|
| diff --git a/chrome/browser/resources/md_history/history_list.js b/chrome/browser/resources/md_history/history_list.js
|
| index aaba6536622c5929aba6360e9ff38e4a8f659dfc..144c995326dd13ae80440d72ae46b5b034c1cf8c 100644
|
| --- a/chrome/browser/resources/md_history/history_list.js
|
| +++ b/chrome/browser/resources/md_history/history_list.js
|
| @@ -26,7 +26,7 @@ Polymer({
|
| },
|
|
|
| listeners: {
|
| - 'infinite-list.scroll': 'notifyListScroll_',
|
| + 'scroll': 'notifyListScroll_',
|
| 'remove-bookmark-stars': 'removeBookmarkStars_',
|
| },
|
|
|
| @@ -36,6 +36,8 @@ Polymer({
|
| // resize events to fire before the list is attached and can be measured.
|
| // Adding another resize here ensures it will get sized correctly.
|
| /** @type {IronListElement} */(this.$['infinite-list']).notifyResize();
|
| + this.$['infinite-list'].scrollTarget = this;
|
| + this.$['scroll-threshold'].scrollTarget = this;
|
| },
|
|
|
| /**
|
|
|