summaryrefslogtreecommitdiff
path: root/prefs.js
diff options
context:
space:
mode:
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)) {