From 3129ebd825db4136ae8fc1c49d7ed4d6340f8504 Mon Sep 17 00:00:00 2001 From: Patrick Simianer
Date: Thu, 29 Oct 2015 13:53:37 +0100
Subject: cosmetics & help
---
js/common.js | 7 ++++---
js/lfpe.js | 12 ++++++++----
2 files changed, 12 insertions(+), 7 deletions(-)
(limited to 'js')
diff --git a/js/common.js b/js/common.js
index 11dcdba..560f63d 100644
--- a/js/common.js
+++ b/js/common.js
@@ -20,12 +20,13 @@ function removeClass(node, className)
*
*
*/
-function toggleDisplay(node)
+function toggleDisplay(id)
{
+ node = $(id);
if (node.style.display=='none') {
- node.style.display = 'block';
+ node.fadeIn();
} else {
- node.style.display = 'none';
+ node.fadeOut();
}
return false;
diff --git a/js/lfpe.js b/js/lfpe.js
index 1cf88bf..4ec6062 100644
--- a/js/lfpe.js
+++ b/js/lfpe.js
@@ -89,7 +89,8 @@ function working()
var last_post_edit = document.getElementById("last_post_edit");
// show 'working' message
- status.style.display = "block";
+ //status.style.display = "block";
+ $("#status").fadeToggle();
// disable button and textarea
button.setAttribute("disabled", "disabled");
@@ -115,7 +116,8 @@ function not_working()
var last_post_edit = document.getElementById("last_post_edit");
// hide 'working' message
- status.style.display = "none";
+ //status.style.display = "none";
+ $("#status").fadeToggle();
// enable buttons
document.getElementById("next").removeAttribute("disabled");
@@ -188,7 +190,8 @@ function Next()
var l = document.getElementById("oov_fields").children.length;
for (var i=0; i