Index: chrome/browser/resources/print_preview/data/ticket_items/ticket_item.js |
diff --git a/chrome/browser/resources/print_preview/data/ticket_items/ticket_item.js b/chrome/browser/resources/print_preview/data/ticket_items/ticket_item.js |
index f2ea4dc80a0ffc9f544f37080b1b8823fd9b24f9..ff31b24ad026cf1407b1e2adabefc9f3c4b2b905 100644 |
--- a/chrome/browser/resources/print_preview/data/ticket_items/ticket_item.js |
+++ b/chrome/browser/resources/print_preview/data/ticket_items/ticket_item.js |
@@ -190,7 +190,8 @@ cr.define('print_preview.ticket_items', function() { |
*/ |
getSelectedDestInternal: function() { |
return this.destinationStore_ ? |
- this.destinationStore_.selectedDestination : null; |
+ this.destinationStore_.selectedDestination : |
+ null; |
}, |
/** |
@@ -227,21 +228,18 @@ cr.define('print_preview.ticket_items', function() { |
if (this.destinationStore_) { |
this.tracker_.add( |
this.destinationStore_, |
- print_preview.DestinationStore.EventType. |
- SELECTED_DESTINATION_CAPABILITIES_READY, |
+ print_preview.DestinationStore.EventType |
+ .SELECTED_DESTINATION_CAPABILITIES_READY, |
this.dispatchChangeEventInternal.bind(this)); |
} |
if (this.documentInfo_) { |
this.tracker_.add( |
- this.documentInfo_, |
- print_preview.DocumentInfo.EventType.CHANGE, |
+ this.documentInfo_, print_preview.DocumentInfo.EventType.CHANGE, |
this.dispatchChangeEventInternal.bind(this)); |
} |
}, |
}; |
// Export |
- return { |
- TicketItem: TicketItem |
- }; |
+ return {TicketItem: TicketItem}; |
}); |