summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/softkeys.js.coffee
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/softkeys.js.coffee')
-rw-r--r--app/assets/javascripts/softkeys.js.coffee25
1 files changed, 25 insertions, 0 deletions
diff --git a/app/assets/javascripts/softkeys.js.coffee b/app/assets/javascripts/softkeys.js.coffee
new file mode 100644
index 0000000..23d5233
--- /dev/null
+++ b/app/assets/javascripts/softkeys.js.coffee
@@ -0,0 +1,25 @@
+jQuery ->
+ function_name = $('#softkey_softkey_function_id :selected').text()
+
+ if function_name == call_forwarding_function_name
+ $('#softkey_call_forward_id').parent().show()
+ $('#softkey_number').parent().hide()
+ else
+ $('#softkey_call_forward_id').parent().hide()
+ if (function_name == hold_function_name || function_name == deactivated_function_name)
+ $('#softkey_number').parent().hide()
+ else
+ $('#softkey_number').parent().show()
+
+ $('#softkey_softkey_function_id').change ->
+ $('#softkey_label').parent().show()
+ function_name = $('#softkey_softkey_function_id :selected').text()
+ if function_name == call_forwarding_function_name
+ $('#softkey_call_forward_id').parent().show("slow")
+ $('#softkey_number').parent().hide("slow")
+ else
+ $('#softkey_call_forward_id').parent().hide("slow")
+ if (function_name == hold_function_name || function_name == deactivated_function_name)
+ $('#softkey_number').parent().hide("slow")
+ else
+ $('#softkey_number').parent().show("slow")