summaryrefslogtreecommitdiff
path: root/functions.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2007-05-14 06:41:04 +0100
committerAndrew Dolgov <[email protected]>2007-05-14 06:41:04 +0100
commit442d77f1ccd670c0fde1db0038d3388e64f885e6 (patch)
treeda60127dad7caff8b6a2f8791e30ce060d5ff875 /functions.js
parent144f32d94100151ed1c0d4e22422a04d8e6068bc (diff)
help uses popup window, recolor infoBox, use subscribe dialog in prefs
Diffstat (limited to 'functions.js')
-rw-r--r--functions.js16
1 files changed, 16 insertions, 0 deletions
diff --git a/functions.js b/functions.js
index 1f031f149..21a0da799 100644
--- a/functions.js
+++ b/functions.js
@@ -1389,6 +1389,22 @@ function infobox_callback() {
}
}
+function helpbox_callback() {
+ if (xmlhttp.readyState == 4) {
+ var box = document.getElementById('helpBox');
+ var shadow = document.getElementById('helpBoxShadow');
+ if (box) {
+ box.innerHTML=xmlhttp.responseText;
+ if (shadow) {
+ shadow.style.display = "block";
+ } else {
+ box.style.display = "block";
+ }
+ }
+ notify("");
+ }
+}
+
function addFilter() {
if (!xmlhttp_ready(xmlhttp)) {