Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(105)

Unified Diff: chrome/browser/resources/print_preview/settings/destination_settings.js

Issue 387073002: Print preview changes for App Kiosk mode. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix PrintPreviewWebUITest.* Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/print_preview/settings/destination_settings.js
diff --git a/chrome/browser/resources/print_preview/settings/destination_settings.js b/chrome/browser/resources/print_preview/settings/destination_settings.js
index c901be13f16920f4ac12def7363f72af4ca539a6..bf0f4457f23617155bfd918cae3c0ea82eeb2ca5 100644
--- a/chrome/browser/resources/print_preview/settings/destination_settings.js
+++ b/chrome/browser/resources/print_preview/settings/destination_settings.js
@@ -140,8 +140,9 @@ cr.define('print_preview', function() {
}
setIsVisible(
- this.getChildElement('.throbber-container'), destination == null);
- setIsVisible(destinationSettingsBoxEl, destination != null);
+ this.getChildElement('.throbber-container'),
+ this.destinationStore_.isAutoSelectDestinationInProgress);
+ setIsVisible(destinationSettingsBoxEl, !!destination);
},
onSelectedDestinationNameSet_: function() {

Powered by Google App Engine
This is Rietveld 408576698