From 16313c9b2a74f1db4e69b7e9463c3525000266ce Mon Sep 17 00:00:00 2001 From: Cofresi Date: Thu, 3 Nov 2016 16:40:46 -0400 Subject: [PATCH] included dropdown lists to be uneditable/editable with the "Create Proposal"/"Edit Proposal"-buttons --- index.html | 3 +++ 1 file changed, 3 insertions(+) diff --git a/index.html b/index.html index 2d13aeb..6ae11d4 100644 --- a/index.html +++ b/index.html @@ -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');