| 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 f060e713979238a4cd899271606dd828771254f6..79e0c8e3ddfe15ea29982dc0b9cccb47a20d05bf 100644
|
| --- a/chrome/browser/resources/bluetooth_internals/sidebar.js
|
| +++ b/chrome/browser/resources/bluetooth_internals/sidebar.js
|
| @@ -32,8 +32,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 = {
|
| @@ -79,7 +82,5 @@ cr.define('sidebar', function() {
|
| },
|
| };
|
|
|
| - return {
|
| - Sidebar: Sidebar
|
| - };
|
| + return {Sidebar: Sidebar};
|
| });
|
|
|