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

Unified Diff: chrome/browser/resources/print_preview/data/ticket_items/copies.js

Issue 144483010: Default copies value should be '1'. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/print_preview/data/ticket_items/copies.js
diff --git a/chrome/browser/resources/print_preview/data/ticket_items/copies.js b/chrome/browser/resources/print_preview/data/ticket_items/copies.js
index 7a3ad0fde066f45e60378c01f7e5f014badba464..8efd6a817fbfe13eee4cad779d6f38ebd86d887b 100644
--- a/chrome/browser/resources/print_preview/data/ticket_items/copies.js
+++ b/chrome/browser/resources/print_preview/data/ticket_items/copies.js
@@ -47,7 +47,7 @@ cr.define('print_preview.ticket_items', function() {
/** @override */
getDefaultValueInternal: function() {
var cap = this.getCopiesCapability_();
- return cap.hasOwnProperty('default') ? cap.default : '';
+ return cap.hasOwnProperty('default') ? cap.default : '1';
},
/** @override */
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698