This commit is contained in:
tworrall 2013-11-25 10:46:30 -05:00
parent d779300c9d
commit 5f848c825e

View file

@ -15,6 +15,7 @@ var newIndividualFormUtils = {
this.lName = $('#lastName');
this.mName = $('#middleName');
this.rdfsLabel = $('#label');
this.submitButton = $('#submit');
},
bindEventListeners: function() {
@ -22,6 +23,7 @@ var newIndividualFormUtils = {
this.form.submit(function() {
newIndividualFormUtils.buildRDFSLabel();
newIndividualFormUtils.submitButton.attr("disabled",true);
});
},