picolisp

Unnamed repository; edit this file to name it for gitweb.
git clone https://logand.com/git/picolisp.git/
Log | Files | Refs | README | LICENSE

commit 078bff2b7faf57c0a364a2760ba2257a27c2476d
parent a8ecf105c08fa9d02a8cdf54498499be87721860
Author: Alexander Burger <abu@software-lab.de>
Date:   Thu,  8 Mar 2012 10:53:58 +0100

Switch off 'InBtn' when disabling
Diffstat:
Mlib/form.js | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/lib/form.js b/lib/form.js @@ -1,4 +1,4 @@ -/* 02dec11abu +/* 07mar12abu * (c) Software Lab. Alexander Burger */ @@ -190,6 +190,7 @@ function post(form, file) { fld.options[j].disabled = true; } fld.disabled = true; + InBtn = 0; // 'onblur' on won't come when disabled if (fld.type == "checkbox" && fld.checked) document.getElementsByName(fld.name)[0].value = "T"; ++i;