| Index: ui/webui/resources/js/cr/ui/focus_grid.js
|
| diff --git a/ui/webui/resources/js/cr/ui/focus_grid.js b/ui/webui/resources/js/cr/ui/focus_grid.js
|
| index 862b20aa238d866d7d31a3bd5f65a38a07cb2f3c..2e76ca10c03009f2d5d72e5a781989e1754a00f4 100644
|
| --- a/ui/webui/resources/js/cr/ui/focus_grid.js
|
| +++ b/ui/webui/resources/js/cr/ui/focus_grid.js
|
| @@ -80,7 +80,7 @@ cr.define('cr.ui', function() {
|
| row = this.rows.length - 1;
|
|
|
| if (!this.rows[row])
|
| - return;
|
| + return false;
|
|
|
| var colIndex = keyRow.items.indexOf(e.target);
|
| var col = Math.min(colIndex, this.rows[row].items.length - 1);
|
| @@ -88,6 +88,12 @@ cr.define('cr.ui', function() {
|
| this.rows[row].focusIndex(col);
|
|
|
| e.preventDefault();
|
| + return true;
|
| + },
|
| +
|
| + /** @override */
|
| + onMousedown: function(row, e) {
|
| + return false;
|
| },
|
|
|
| /**
|
|
|