summaryrefslogtreecommitdiff
path: root/httemplate/elements/select-exchange.html
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2017-05-22 19:19:01 -0700
committerIvan Kohler <ivan@freeside.biz>2017-05-22 19:19:01 -0700
commit6775e56f85e871b369ebe3d25498fda640cef47b (patch)
tree15e76bbbf1f3e1863d0afaae86cd91a5c2e05d84 /httemplate/elements/select-exchange.html
parentcb2a5cbe1fb5f0b3fb8bea31f310f5805e5667c5 (diff)
fix DID selection dropdowns, RT#75901
Diffstat (limited to 'httemplate/elements/select-exchange.html')
-rw-r--r--httemplate/elements/select-exchange.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/httemplate/elements/select-exchange.html b/httemplate/elements/select-exchange.html
index a8201468f..9d6c390da 100644
--- a/httemplate/elements/select-exchange.html
+++ b/httemplate/elements/select-exchange.html
@@ -20,7 +20,7 @@
var exchangeerror = document.getElementById('<% $opt{'prefix'} %>exchangeerror');
exchangeerror.style.display = 'none';
- what.form.<% $opt{'prefix'} %>phonenum.disabled = 'disabled';
+ $('#<% $opt{'prefix'} %>phonenum').prop('disabled', true);
areacode = what.options[what.selectedIndex].value;
@@ -28,10 +28,10 @@
var reply = JSON.parse(exchanges);
// blank the current exchange
- $('#<% $opt{prefix} %>exchange').empty;
+ $('#<% $opt{prefix} %>exchange').empty();
// blank the current phonenum too
- $('#<% $opt{prefix} %>phonenum').empty;
+ $('#<% $opt{prefix} %>phonenum').empty();
if ( what.form.<% $opt{'prefix'} %>phonenum.type != 'select-multiple' ) {
jopt($('#<% $opt{'prefix'} %>phonenum'), '', 'Select phone number');
}