summaryrefslogtreecommitdiff
path: root/functions.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2010-02-03 16:54:17 +0300
committerAndrew Dolgov <[email protected]>2010-02-03 16:54:17 +0300
commit3393238de25981525ca816391b8e94274d94a3f8 (patch)
tree481a2bf2e2441299f35884f621995c2242d5ef57 /functions.js
parentf2a648e1b28dcc92fb52886b22a68fcb7b1f80b8 (diff)
more input focusing improvements in popup dialogs
Diffstat (limited to 'functions.js')
-rw-r--r--functions.js9
1 files changed, 9 insertions, 0 deletions
diff --git a/functions.js b/functions.js
index 6ca221ace..3baaffa3a 100644
--- a/functions.js
+++ b/functions.js
@@ -2147,3 +2147,12 @@ function addLabel() {
}
}
+function quickAddFeed() {
+ displayDlg('quickAddFeed', '',
+ function () {$('feed_url').focus();});
+}
+
+function quickAddFilter() {
+ displayDlg('quickAddFilter', '',
+ function () {document.forms['filter_add_form'].reg_exp.focus();});
+}