summaryrefslogtreecommitdiff
path: root/functions.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-10-28 06:03:45 +0100
committerAndrew Dolgov <[email protected]>2005-10-28 06:03:45 +0100
commite3d620d51ff779027bd724472ed5333d906b6167 (patch)
tree44fa6bfe14d9e085cbaa1c0b19b072a9d94bfe7a /functions.js
parent383f1827d1b1f60145546803d8523cb636b838b4 (diff)
functions.js: add function cancelDialog()
Diffstat (limited to 'functions.js')
-rw-r--r--functions.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/functions.js b/functions.js
index baee89558..fe77163cb 100644
--- a/functions.js
+++ b/functions.js
@@ -396,3 +396,8 @@ function popupHelp(tid) {
}
}
+function cancelDialog(sender) {
+
+ sender.offsetParent.style.display = "none";
+
+}