included dropdown lists to be uneditable/editable with the "Create Proposal"/"Edit Proposal"-buttons

This commit is contained in:
Cofresi 2016-11-03 16:40:46 -04:00
parent 87402e1389
commit 16313c9b2a

View file

@ -300,6 +300,9 @@
$('.createProposal input').each(function() {
$(this).attr("disabled", edit);
});
$('.createProposal select').each(function() {
$(this).attr("disabled", edit);
});
if (edit === true) {
$('#btnPrepare').addClass('hidden');