| Index: chrome/browser/resources/settings/settings_main/settings_main.js
|
| diff --git a/chrome/browser/resources/settings/settings_main/settings_main.js b/chrome/browser/resources/settings/settings_main/settings_main.js
|
| index 49397d85763e019f8ec3de52b9e70d4b0cde7833..0e43c54e5ec73b337807de8253e9059c24bed270 100644
|
| --- a/chrome/browser/resources/settings/settings_main/settings_main.js
|
| +++ b/chrome/browser/resources/settings/settings_main/settings_main.js
|
| @@ -76,7 +76,9 @@ Polymer({
|
| */
|
| pageVisibility: {
|
| type: Object,
|
| - value: function() { return {}; },
|
| + value: function() {
|
| + return {};
|
| + },
|
| },
|
|
|
| showAndroidApps: Boolean,
|
| @@ -196,7 +198,7 @@ Polymer({
|
| * @private
|
| */
|
| updateOverscrollForPage_: function() {
|
| - if (this.showPages_.about) {
|
| + if (this.showPages_.about || this.inSearchMode_) {
|
| // Set overscroll directly to remove any existing overscroll that
|
| // setOverscroll_ would otherwise preserve.
|
| this.overscroll_ = 0;
|
|
|