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

Unified Diff: chrome/browser/resources/shared/js/cr/ui/list.js

Issue 6029013: DOMUI: Make Autofill profile lists multi-select and implementing deleting (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 11 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/shared/js/cr/ui/list.js
diff --git a/chrome/browser/resources/shared/js/cr/ui/list.js b/chrome/browser/resources/shared/js/cr/ui/list.js
index 9a579d8f1aa4e9deb301b4b99f8f14f5d15ca648..90a3677a0ae81f1796c75923971de8195b6f0964 100644
--- a/chrome/browser/resources/shared/js/cr/ui/list.js
+++ b/chrome/browser/resources/shared/js/cr/ui/list.js
@@ -270,8 +270,8 @@ cr.define('cr.ui', function() {
this.selectionModel = new ListSelectionModel(length);
this.addEventListener('dblclick', this.handleDoubleClick_);
- this.addEventListener('mousedown', this.handleMouseDownUp_);
- this.addEventListener('mouseup', this.handleMouseDownUp_);
+ this.addEventListener('mousedown', this.handleMouseDownUp_, false);
+ this.addEventListener('mouseup', this.handleMouseDownUp_, false);
stuartmorgan 2011/01/06 19:27:33 Isn't false the default? Why do we need this here
James Hawkins 2011/01/06 20:06:43 Removing per off-list conversation.
this.addEventListener('keydown', this.handleKeyDown);
this.addEventListener('scroll', this.redraw.bind(this));

Powered by Google App Engine
This is Rietveld 408576698