summaryrefslogtreecommitdiff
path: root/functions.js
diff options
context:
space:
mode:
authorAdrian Lang <[email protected]>2010-01-06 12:17:28 +0100
committerAndrew Dolgov <[email protected]>2010-01-13 11:46:11 +0300
commit542aebacb73d9fe571048d01d9ffc12d4bca1643 (patch)
tree05cef8d04e2bb6d1c09f49991fdb68e500cf87a2 /functions.js
parentae096313ed2a5fc4b96dc82a5203f23936cd23f8 (diff)
Add callback to Popups, focus subscribe URL input.
Diffstat (limited to 'functions.js')
-rw-r--r--functions.js11
1 files changed, 2 insertions, 9 deletions
diff --git a/functions.js b/functions.js
index 1e167c94f..a5d803c9f 100644
--- a/functions.js
+++ b/functions.js
@@ -1313,7 +1313,7 @@ function closeInfoBox(cleanup) {
}
-function displayDlg(id, param) {
+function displayDlg(id, param, callback) {
notify_progress("Loading, please wait...", true);
@@ -1326,6 +1326,7 @@ function displayDlg(id, param) {
parameters: query,
onComplete: function (transport) {
infobox_callback2(transport);
+ if (callback) callback(transport);
} });
return false;
@@ -1366,14 +1367,6 @@ function infobox_callback2(transport) {
}
- /* FIXME this needs to be moved out somewhere */
-
- if ($("tags_choices")) {
- new Ajax.Autocompleter('tags_str', 'tags_choices',
- "backend.php?op=rpc&subop=completeTags",
- { tokens: ',', paramName: "search" });
- }
-
disableHotkeys();
notify("");