NIHVIVO-193 Fixed bug in custom form javascript which was causing asterisks used to indicate required fields to be generated multiple times.
This commit is contained in:
parent
3dda68529e
commit
23ef0f8c82
1 changed files with 2 additions and 2 deletions
|
@ -41,6 +41,7 @@ var customForm = {
|
||||||
// Remove previously bound event handlers
|
// Remove previously bound event handlers
|
||||||
this.cancel.unbind('click');
|
this.cancel.unbind('click');
|
||||||
this.button.unbind('click');
|
this.button.unbind('click');
|
||||||
|
this.addNewLink.unbind('click');
|
||||||
|
|
||||||
this.toggleRequiredHints('remove', this.addNew, this.existing);
|
this.toggleRequiredHints('remove', this.addNew, this.existing);
|
||||||
},
|
},
|
||||||
|
@ -97,7 +98,7 @@ var customForm = {
|
||||||
this.showFields(this.existing);
|
this.showFields(this.existing);
|
||||||
this.addNewLink.show();
|
this.addNewLink.show();
|
||||||
this.addNew.hide();
|
this.addNew.hide();
|
||||||
this.showFields(this.entry);
|
this.entry.show();
|
||||||
this.requiredLegend.show();
|
this.requiredLegend.show();
|
||||||
this.button.val('Save Changes');
|
this.button.val('Save Changes');
|
||||||
|
|
||||||
|
@ -129,7 +130,6 @@ var customForm = {
|
||||||
$(this).html(newLabelText);
|
$(this).html(newLabelText);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
|
|
||||||
showFields: function(el) {
|
showFields: function(el) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue