| Index: chrome/browser/resources/print_preview/settings/more_settings.js
|
| diff --git a/chrome/browser/resources/print_preview/settings/more_settings.js b/chrome/browser/resources/print_preview/settings/more_settings.js
|
| index 8a3d5f6fd2f6f490a9a84c8b35b628a636f04870..580b56ae5abf9d32d8f12fa4223e1f00685ac5f5 100644
|
| --- a/chrome/browser/resources/print_preview/settings/more_settings.js
|
| +++ b/chrome/browser/resources/print_preview/settings/more_settings.js
|
| @@ -123,7 +123,7 @@ cr.define('print_preview', function() {
|
| */
|
| updateState_: function(noAnimation) {
|
| if (!this.firstDestinationReady_) {
|
| - fadeOutElement(this.getElement(), noAnimation);
|
| + fadeOutElement(this.getElement());
|
| return;
|
| }
|
| // When capabilities are not known yet, don't change the state to avoid
|
| @@ -154,7 +154,7 @@ cr.define('print_preview', function() {
|
| if (hasSectionsToToggle)
|
| fadeInElement(this.getElement(), noAnimation);
|
| else
|
| - fadeOutElement(this.getElement(), noAnimation);
|
| + fadeOutElement(this.getElement());
|
|
|
| var collapseContent =
|
| this.settingsToShow_ == MoreSettings.SettingsToShow.MOST_POPULAR &&
|
|
|