| Index: chrome/browser/resources/print_preview/settings/advanced_options_settings.js
|
| diff --git a/chrome/browser/resources/print_preview/settings/advanced_options_settings.js b/chrome/browser/resources/print_preview/settings/advanced_options_settings.js
|
| index 62e735b1b97e8cc96387e195e775a3de8e233fca..2469dbe006e0fff6a3b8a19dfb113ac25ebe021b 100644
|
| --- a/chrome/browser/resources/print_preview/settings/advanced_options_settings.js
|
| +++ b/chrome/browser/resources/print_preview/settings/advanced_options_settings.js
|
| @@ -60,19 +60,18 @@ cr.define('print_preview', function() {
|
| enterDocument: function() {
|
| print_preview.SettingsSection.prototype.enterDocument.call(this);
|
|
|
| - this.tracker.add(
|
| - this.getButton_(), 'click', function() {
|
| - cr.dispatchSimpleEvent(
|
| - this, AdvancedOptionsSettings.EventType.BUTTON_ACTIVATED);
|
| - }.bind(this));
|
| + this.tracker.add(this.getButton_(), 'click', function() {
|
| + cr.dispatchSimpleEvent(
|
| + this, AdvancedOptionsSettings.EventType.BUTTON_ACTIVATED);
|
| + }.bind(this));
|
| this.tracker.add(
|
| this.destinationStore_,
|
| print_preview.DestinationStore.EventType.DESTINATION_SELECT,
|
| this.onDestinationChanged_.bind(this));
|
| this.tracker.add(
|
| this.destinationStore_,
|
| - print_preview.DestinationStore.EventType.
|
| - SELECTED_DESTINATION_CAPABILITIES_READY,
|
| + print_preview.DestinationStore.EventType
|
| + .SELECTED_DESTINATION_CAPABILITIES_READY,
|
| this.onDestinationChanged_.bind(this));
|
| },
|
|
|
| @@ -94,7 +93,5 @@ cr.define('print_preview', function() {
|
| };
|
|
|
| // Export
|
| - return {
|
| - AdvancedOptionsSettings: AdvancedOptionsSettings
|
| - };
|
| + return {AdvancedOptionsSettings: AdvancedOptionsSettings};
|
| });
|
|
|