Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4221)

Unified Diff: chrome/browser/resources/apps_debugger/js/items_list.js

Issue 11794034: Adds functionality to pack an extension / app from the app. (Closed) Base URL: http://git.chromium.org/chromium/src.git@bacha_lo
Patch Set: Addressed comments Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);
});
}

Powered by Google App Engine
This is Rietveld 408576698