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

Unified Diff: chrome/browser/resources/options2/deletable_item_list.js

Issue 9706052: [uber page] Fix row delete buttons on all lists in options. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 9 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/options2/deletable_item_list.js
diff --git a/chrome/browser/resources/options2/deletable_item_list.js b/chrome/browser/resources/options2/deletable_item_list.js
index 2b294303968e0e9f7ca63bc9930d70a51dd1f5f6..c0d26e77a274b4241351d4437dce5d9ccbbf7268 100644
--- a/chrome/browser/resources/options2/deletable_item_list.js
+++ b/chrome/browser/resources/options2/deletable_item_list.js
@@ -122,7 +122,7 @@ cr.define('options', function() {
return;
var target = e.target;
- if (target.classList.contains('close-button')) {
+ if (target.classList.contains('row-delete-button')) {
var listItem = this.getListItemAncestor(target);
var selected = this.selectionModel.selectedIndexes;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698