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

Unified Diff: chrome/browser/resources/shared/js/cr/ui/list_selection_controller.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: Logic fix. 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
« no previous file with comments | « chrome/browser/resources/options/deletable_item_list.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/shared/js/cr/ui/list_selection_controller.js
diff --git a/chrome/browser/resources/shared/js/cr/ui/list_selection_controller.js b/chrome/browser/resources/shared/js/cr/ui/list_selection_controller.js
index 72aada65ec6fbcc4f069984e670cf30fc2f2d381..fa1f3c21eb8145cba5a21e87d85c543084accf49 100644
--- a/chrome/browser/resources/shared/js/cr/ui/list_selection_controller.js
+++ b/chrome/browser/resources/shared/js/cr/ui/list_selection_controller.js
@@ -141,13 +141,13 @@ cr.define('cr.ui', function() {
(e.ctrlKey && !e.shiftKey))) {
// Selection is handled at mouseUp on windows/linux, mouseDown on mac.
if (cr.isMac? isDown : !isDown) {
- // toggle the current one and make it anchor index
+ // Toggle the current one and make it anchor index.
sm.setIndexSelected(index, !sm.getIndexSelected(index));
sm.leadIndex = index;
sm.anchorIndex = index;
}
} else if (e.shiftKey && anchorIndex != -1 && anchorIndex != index) {
- // Shift is done in mousedown
+ // Shift is done in mousedown.
if (isDown) {
sm.unselectAll();
sm.leadIndex = index;
@@ -157,7 +157,7 @@ cr.define('cr.ui', function() {
sm.setIndexSelected(index, true);
}
} else {
- // Right click for a context menu need to not clear the selection.
+ // Right click for a context menu needs to not clear the selection.
var isRightClick = e.button == 2;
// If the index is selected this is handled in mouseup.
@@ -176,7 +176,7 @@ cr.define('cr.ui', function() {
},
/**
- * Called by the view when it recieves a keydown event.
+ * Called by the view when it receives a keydown event.
* @param {Event} e The keydown event.
*/
handleKeyDown: function(e) {
@@ -246,7 +246,7 @@ cr.define('cr.ui', function() {
sm.selectRange(anchorIndex, newIndex);
}
} else if (e.ctrlKey && !cr.isMac) {
- // Setting the lead index is done above
+ // Setting the lead index is done above.
// Mac does not allow you to change the lead.
} else {
if (sm.multiple)
« no previous file with comments | « chrome/browser/resources/options/deletable_item_list.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698