| Index: chrome/browser/resources/print_preview/print_preview.js
|
| diff --git a/chrome/browser/resources/print_preview/print_preview.js b/chrome/browser/resources/print_preview/print_preview.js
|
| index cb2434132c14b50a53eecb3b43993f51cbd2ffa8..630045bdae3283637e67016b022e999fba310253 100644
|
| --- a/chrome/browser/resources/print_preview/print_preview.js
|
| +++ b/chrome/browser/resources/print_preview/print_preview.js
|
| @@ -169,7 +169,8 @@ cr.define('print_preview', function() {
|
| this.printTicketStore_.fitToPage,
|
| this.printTicketStore_.cssBackground,
|
| this.printTicketStore_.selectionOnly,
|
| - this.printTicketStore_.headerFooter);
|
| + this.printTicketStore_.headerFooter,
|
| + this.printTicketStore_.printFriendly);
|
| this.addChild(this.otherOptionsSettings_);
|
|
|
| /**
|
| @@ -640,7 +641,9 @@ cr.define('print_preview', function() {
|
| settings.thousandsDelimeter,
|
| settings.decimalDelimeter,
|
| settings.unitType,
|
| - settings.selectionOnly);
|
| + settings.selectionOnly,
|
| + settings.printFriendlyEnabled);
|
| +
|
| this.destinationStore_.init(settings.isInAppKioskMode);
|
| this.appState_.setInitialized();
|
|
|
| @@ -1270,6 +1273,7 @@ cr.define('print_preview', function() {
|
| <include src="data/ticket_items/dpi.js">
|
| <include src="data/ticket_items/duplex.js">
|
| <include src="data/ticket_items/header_footer.js">
|
| +<include src="data/ticket_items/print_friendly.js">
|
| <include src="data/ticket_items/media_size.js">
|
| <include src="data/ticket_items/landscape.js">
|
| <include src="data/ticket_items/margins_type.js">
|
|
|