summaryrefslogtreecommitdiff
path: root/prefs.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-11-27 11:56:53 +0100
committerAndrew Dolgov <[email protected]>2005-11-27 11:56:53 +0100
commit01c9c74ab7a1a961d38dfe8201fcb0b17d795ae8 (patch)
tree9260eb79bb2f2e7f57788679007034a2f286beea /prefs.js
parent76332f3c90a276f8ffb20a5f55d573542c85700f (diff)
label help uses infoboxes, real help system
Diffstat (limited to 'prefs.js')
-rw-r--r--prefs.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/prefs.js b/prefs.js
index b69369ba1..5c699f237 100644
--- a/prefs.js
+++ b/prefs.js
@@ -695,6 +695,16 @@ function labelTest() {
}
+function displayHelpInfobox(topic_id) {
+
+ xmlhttp.open("GET", "backend.php?op=help&tid=" +
+ param_escape(topic_id) + "&noheaders=1", true);
+
+ xmlhttp.onreadystatechange=infobox_callback;
+ xmlhttp.send(null);
+
+}
+
function labelEditCancel() {
if (!xmlhttp_ready(xmlhttp)) {