Index: chrome/browser/resources/bluetooth_internals/sidebar.js |
diff --git a/chrome/browser/resources/bluetooth_internals/sidebar.js b/chrome/browser/resources/bluetooth_internals/sidebar.js |
index 9071614f354ab3291f120a6a1abddd7ab1f1ddf4..4fb3076d01d61f5014098469f900fadadd326141 100644 |
--- a/chrome/browser/resources/bluetooth_internals/sidebar.js |
+++ b/chrome/browser/resources/bluetooth_internals/sidebar.js |
@@ -35,8 +35,11 @@ cr.define('sidebar', function() { |
this.overlayDiv_ = this.sidebarDiv_.querySelector('.overlay'); |
this.overlayDiv_.addEventListener('click', this.close.bind(this)); |
- window.matchMedia('screen and (max-width: 600px)').addListener( |
- function(query) { if (!query.matches) this.close(); }.bind(this)); |
+ window.matchMedia('screen and (max-width: 600px)') |
+ .addListener(function(query) { |
+ if (!query.matches) |
+ this.close(); |
+ }.bind(this)); |
} |
Sidebar.prototype = { |
@@ -109,7 +112,5 @@ cr.define('sidebar', function() { |
}, |
}; |
- return { |
- Sidebar: Sidebar |
- }; |
+ return {Sidebar: Sidebar}; |
}); |