diff options
author | Byron Jones <glob@mozilla.com> | 2011-11-07 22:15:56 +0100 |
---|---|---|
committer | Dave Lawrence <dkl@mozilla.com> | 2011-11-07 22:15:56 +0100 |
commit | 265e4213dff863d760a7c4e84de5b5eb51959188 (patch) | |
tree | 8369a71c0287a2531ec051758d8f3073bd326d32 /js | |
parent | 81dea43722a6d396676a1c3f59433f8076c31fb5 (diff) | |
download | bugzilla-265e4213dff863d760a7c4e84de5b5eb51959188.tar.gz bugzilla-265e4213dff863d760a7c4e84de5b5eb51959188.tar.xz |
Bug 698689: focus crash_signature field when editing
Diffstat (limited to 'js')
-rw-r--r-- | js/field.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/js/field.js b/js/field.js index a0684ffce..5dd43921d 100644 --- a/js/field.js +++ b/js/field.js @@ -252,6 +252,7 @@ function showEditableField (e, ContainerInputArray) { inputs.push(inputArea); } else { inputs = inputArea.getElementsByTagName('input'); + inputs = inputArea.getElementsByTagName('textarea'); } if ( inputs.length > 0 ) { // Change the first field's value to ContainerInputArray[2] |