summaryrefslogtreecommitdiff
path: root/js/common.js
diff options
context:
space:
mode:
authorPatrick Simianer <p@simianer.de>2015-10-29 13:53:37 +0100
committerPatrick Simianer <p@simianer.de>2015-10-29 13:53:37 +0100
commit3129ebd825db4136ae8fc1c49d7ed4d6340f8504 (patch)
tree5a07cd5344bd8199f11492718965f90063f41222 /js/common.js
parentb7a40543ff6c20c1ae5631014e8f0b4f46415fe7 (diff)
cosmetics & help
Diffstat (limited to 'js/common.js')
-rw-r--r--js/common.js7
1 files changed, 4 insertions, 3 deletions
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;