commit 64925d1b890e03f9386f239647e5e526336856bd
parent 30556ae5c1d1f732abf699e93cf0c22de2070dad
Author: Alexander Burger <abu@software-lab.de>
Date: Wed, 27 Feb 2013 14:06:14 +0100
JS: Set 'textAlign' attribute for Hint popups
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/lib/form.js b/lib/form.js
@@ -1,4 +1,4 @@
-/* 25feb13abu
+/* 27feb13abu
* (c) Software Lab. Alexander Burger
*/
@@ -293,6 +293,7 @@ function doHint(field) {
Hint.style.visibility = "hidden";
Hint.style.position = "absolute";
Hint.style.zIndex = 9999;
+ Hint.style.textAlign = "left";
Hints = document.createElement("div");
Hints.setAttribute("class", "hints");
Hints.style.position = "relative";