summaryrefslogtreecommitdiff
path: root/functions.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-10-16 16:17:12 +0100
committerAndrew Dolgov <[email protected]>2005-10-16 16:17:12 +0100
commit7dc66a616e00559aeed9cd49f0c65208170e122f (patch)
treef67e55adc801535add7b66bf061cec03c19bc8db /functions.js
parent6e0584e9308e0dc0049d2d59d2b0c86f619720b0 (diff)
add SQL expression help and placeholder for help mechanism
Diffstat (limited to 'functions.js')
-rw-r--r--functions.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/functions.js b/functions.js
index 323d7d8af..5bf5e6973 100644
--- a/functions.js
+++ b/functions.js
@@ -356,3 +356,9 @@ function update_label_counters(feed) {
xmlhttp_rpc.send(null);
}
}
+
+function popupHelp(tid) {
+ var w = window.open("backend.php?op=help&tid=" + tid,
+ "Popup Help",
+ "menubar=no,location=no,resizable=yes,scrollbars=yes,status=no");
+}