diff options
author | Dave Lawrence <dlawrence@mozilla.com> | 2013-05-10 16:57:48 +0200 |
---|---|---|
committer | Dave Lawrence <dlawrence@mozilla.com> | 2013-05-10 16:57:48 +0200 |
commit | 380a0f8742e23868e01cd31aca113efb8ceb72f5 (patch) | |
tree | aa98a2729a611a5ecaf55f8c910e6427e8977133 /js | |
parent | b5075fdb03efc8732e9d8ba767e8043f577bdbce (diff) | |
download | bugzilla-380a0f8742e23868e01cd31aca113efb8ceb72f5.tar.gz bugzilla-380a0f8742e23868e01cd31aca113efb8ceb72f5.tar.xz |
Bug 850135 - hide the textarea custom fields by default with an (edit) link
Diffstat (limited to 'js')
-rw-r--r-- | js/field.js | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/js/field.js b/js/field.js index bfb8a8244..6f42fe8a4 100644 --- a/js/field.js +++ b/js/field.js @@ -219,14 +219,14 @@ function setupEditLink(id) { } /* Hide input/select fields and show the text with (edit) next to it */ -function hideEditableField( container, input, action, field_id, original_value, new_value ) { +function hideEditableField( container, input, action, field_id, original_value, new_value, hide_input ) { YAHOO.util.Dom.removeClass(container, 'bz_default_hidden'); YAHOO.util.Dom.addClass(input, 'bz_default_hidden'); YAHOO.util.Event.addListener(action, 'click', showEditableField, new Array(container, input, field_id, new_value)); if(field_id != ""){ YAHOO.util.Event.addListener(window, 'load', checkForChangedFieldValues, - new Array(container, input, field_id, original_value)); + new Array(container, input, field_id, original_value, hide_input )); } } @@ -276,7 +276,7 @@ function showEditableField (e, ContainerInputArray) { } // focus on the first field, this makes it easier to edit inputs[0].focus(); - if ( type == "input" ) { + if ( type == "input" || type == "textarea" ) { inputs[0].select(); } } @@ -300,8 +300,11 @@ function checkForChangedFieldValues(e, ContainerInputArray ) { var el = document.getElementById(ContainerInputArray[2]); var unhide = false; if ( el ) { - if ( el.value != ContainerInputArray[3] || - ( el.value == "" && el.id != "alias" && el.id != "qa_contact" ) ) { + if ( !ContainerInputArray[4] + && (el.value != ContainerInputArray[3] + || (el.value == "" && el.id != "alias" && el.id != "qa_contact")) ) + { + unhide = true; } else { @@ -310,7 +313,7 @@ function checkForChangedFieldValues(e, ContainerInputArray ) { if ( set_default ) { if(set_default.checked){ unhide = true; - } + } } } } |