diff options
author | Max Kanat-Alexander <mkanat@bugzilla.org> | 2010-07-20 23:26:15 +0200 |
---|---|---|
committer | Max Kanat-Alexander <mkanat@bugzilla.org> | 2010-07-20 23:26:15 +0200 |
commit | 69be160f92f1d20408c0e390610dffbd619f63cb (patch) | |
tree | 8b23fae12430b372a51f11a969cd54037cc1d1be /js | |
parent | 1dc3eb46af07596e64c6c3bb1cbb82cf121ad8b1 (diff) | |
download | bugzilla-69be160f92f1d20408c0e390610dffbd619f63cb.tar.gz bugzilla-69be160f92f1d20408c0e390610dffbd619f63cb.tar.xz |
Bug 560003: Hide the "Add Bug URLs" box behind an (add) link.
r=timello, a=mkanat
Diffstat (limited to 'js')
-rw-r--r-- | js/field.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/js/field.js b/js/field.js index 2fff5931d..d2e800b90 100644 --- a/js/field.js +++ b/js/field.js @@ -203,6 +203,12 @@ function updateCalendarFromField(date_field) { } } +function setupEditLink(id) { + var link_container = 'container_showhide_' + id; + var input_container = 'container_' + id; + var link = 'showhide_' + id; + hideEditableField(link_container, input_container, link); +} /* Hide input fields and show the text with (edit) next to it */ function hideEditableField( container, input, action, field_id, original_value ) { |