Chromium Code Reviews| Index: chrome/browser/resources/apps_debugger/js/items_list.js |
| diff --git a/chrome/browser/resources/apps_debugger/js/items_list.js b/chrome/browser/resources/apps_debugger/js/items_list.js |
| index 4f9ed2a3a711b014b1cf53a0c21041bf048acb43..eb27542c3a19eaeca982c094f4c58af17edce827 100644 |
| --- a/chrome/browser/resources/apps_debugger/js/items_list.js |
| +++ b/chrome/browser/resources/apps_debugger/js/items_list.js |
| @@ -1,6 +1,6 @@ |
| // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| -// found in the LICENSE file. |
| +// found in the LICENSE file.. |
|
Dan Beam
2013/02/11 23:44:24
remove second .
Gaurav
2013/02/12 19:33:17
Done.
|
| cr.define('apps_dev_tool', function() { |
| 'use strict'; |
| @@ -199,7 +199,7 @@ cr.define('apps_dev_tool', function() { |
| if (item.may_disable) { |
| enable.addEventListener('click', function(e) { |
| chrome.developerPrivate.enable( |
| - item.id, e.target.checked, loadItemsInfo); |
| + item.id, !!e.target.checked, loadItemsInfo); |
| }); |
| } |