| 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 e1284a749008675c20693907fa04844d0a27577e..5add58ad195b18afcb1273aa743149aaa95bc0e9 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,17 @@ 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,
|
| + this.destinationStore_, print_preview.DestinationStore.EventType
|
| + .SELECTED_DESTINATION_CAPABILITIES_READY,
|
| this.onDestinationChanged_.bind(this));
|
| },
|
|
|
| @@ -94,7 +92,5 @@ cr.define('print_preview', function() {
|
| };
|
|
|
| // Export
|
| - return {
|
| - AdvancedOptionsSettings: AdvancedOptionsSettings
|
| - };
|
| + return {AdvancedOptionsSettings: AdvancedOptionsSettings};
|
| });
|
|
|