| Index: trunk/src/chrome/browser/resources/chromeos/login/user_pod_row.js
|
| ===================================================================
|
| --- trunk/src/chrome/browser/resources/chromeos/login/user_pod_row.js (revision 202380)
|
| +++ trunk/src/chrome/browser/resources/chromeos/login/user_pod_row.js (working copy)
|
| @@ -471,8 +471,6 @@
|
| handleActionAreaButtonClick_: function(e) {
|
| if (this.parentNode.disabled)
|
| return;
|
| - console.error('Action area clicked: ' + !this.isActionBoxMenuActive +
|
| - ' at ' + e.x + ', ' + e.y);
|
| this.isActionBoxMenuActive = !this.isActionBoxMenuActive;
|
| },
|
|
|
| @@ -486,11 +484,8 @@
|
| switch (e.keyIdentifier) {
|
| case 'Enter':
|
| case 'U+0020': // Space
|
| - if (this.parentNode.focusedPod_ && !this.isActionBoxMenuActive) {
|
| - console.error('Action area keyed: ' + !this.isActionBoxMenuActive +
|
| - ' at ' + e.x + ', ' + e.y);
|
| + if (this.parentNode.focusedPod_ && !this.isActionBoxMenuActive)
|
| this.isActionBoxMenuActive = true;
|
| - }
|
| e.stopPropagation();
|
| break;
|
| case 'Up':
|
| @@ -1207,9 +1202,6 @@
|
| if (this.disabled)
|
| return;
|
|
|
| - console.error('Document clicked at ' + e.x + ', ' + e.y +
|
| - ', pod: ' + findAncestorByClass(e.target, 'pod'));
|
| -
|
| // Clear all menus if the click is outside pod menu and its
|
| // button area.
|
| if (!findAncestorByClass(e.target, 'action-box-menu') &&
|
|
|