summaryrefslogtreecommitdiff
path: root/functions.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-12-08 09:05:21 +0100
committerAndrew Dolgov <[email protected]>2006-12-08 09:05:21 +0100
commit350f0ad1859b5b530840b4610a2a30bcb3cdbb5f (patch)
treedd36bd6efb1b679102003977b5292583f8b2a9bf /functions.js
parentdf74052f1e93435b50233ce33d1f4fd27e795690 (diff)
move filterDlgCheckAction() to functions.js
Diffstat (limited to 'functions.js')
-rw-r--r--functions.js37
1 files changed, 37 insertions, 0 deletions
diff --git a/functions.js b/functions.js
index 2e7ad6807..b5cf29b26 100644
--- a/functions.js
+++ b/functions.js
@@ -1527,3 +1527,40 @@ function getFeedName(id, is_cat) {
function viewContentUrl(url) {
getContentContext().location = url;
}
+
+function filterDlgCheckAction(sender) {
+
+ try {
+
+ var action = sender[sender.selectedIndex].value;
+
+ var form = document.forms["filter_add_form"];
+
+ if (!form) {
+ form = document.forms["filter_edit_form"];
+ }
+
+ if (!form) {
+ debug("filterDlgCheckAction: can't find form!");
+ return;
+ }
+
+ var action_param = form.action_param;
+
+ if (!action_param) {
+ debug("filterDlgCheckAction: can't find action param!");
+ return;
+ }
+
+ // if selected action supports parameters, enable params field
+ if (action == 4) {
+ action_param.disabled = false;
+ } else {
+ action_param.disabled = true;
+ }
+
+ } catch (e) {
+ exception_error(e, "filterDlgCheckAction");
+ }
+
+}