diff options
author | Jonathan Prykop <jonathan@freeside.biz> | 2015-08-25 21:46:01 -0500 |
---|---|---|
committer | Jonathan Prykop <jonathan@freeside.biz> | 2015-08-25 21:46:01 -0500 |
commit | dd0de30cf562e4e31359a9d9108fec974ecb4299 (patch) | |
tree | 4832d55055c3a158b699142552732148117aa8b2 | |
parent | c13a7adf63cc830d092bbf4a8e9bda2aa3beee56 (diff) |
RT#18361: Delay package from billing until services are provisioned [bug fix to javascript]
-rw-r--r-- | httemplate/elements/tr-pkg_svc.html | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/httemplate/elements/tr-pkg_svc.html b/httemplate/elements/tr-pkg_svc.html index 7ac67b7ec..de3f95a3a 100644 --- a/httemplate/elements/tr-pkg_svc.html +++ b/httemplate/elements/tr-pkg_svc.html @@ -114,6 +114,9 @@ function provision_hold_check () { for (i = 0; i < provision_hold_td.length; i++) { provision_hold_td[i].style.display = start_on_hold.checked ? '' : 'none'; } + for (i = 0; i < provision_hold_input.length; i++) { + provision_hold_input[i].disabled = start_on_hold.checked ? false : true; + } } } function provision_hold_init () { |