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 30556ae5c1d1f732abf699e93cf0c22de2070dad
parent 03a484f3099bb2f62707bc10a63693758fb9c12d
Author: Alexander Burger <abu@software-lab.de>
Date:   Mon, 25 Feb 2013 15:47:50 +0100

JS: Set 'zIndex' attribute for Hint popups
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 @@ -/* 19feb13abu +/* 25feb13abu * (c) Software Lab. Alexander Burger */ @@ -292,6 +292,7 @@ function doHint(field) { Hint.setAttribute("class", "hint"); Hint.style.visibility = "hidden"; Hint.style.position = "absolute"; + Hint.style.zIndex = 9999; Hints = document.createElement("div"); Hints.setAttribute("class", "hints"); Hints.style.position = "relative";