| 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 7c27aa5e47b6876c2e6ea64210ad9d97c4cc0b66..11b59112e52d82afcd77d6f342b1d7140d652865 100644
|
| --- a/chrome/browser/resources/md_history/history_list.js
|
| +++ b/chrome/browser/resources/md_history/history_list.js
|
| @@ -28,7 +28,7 @@ Polymer({
|
| },
|
|
|
| listeners: {
|
| - 'infinite-list.scroll': 'notifyListScroll_',
|
| + 'scroll': 'notifyListScroll_',
|
| 'remove-bookmark-stars': 'removeBookmarkStars_',
|
| },
|
|
|
| @@ -38,6 +38,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;
|
| },
|
|
|
| /**
|
|
|