summaryrefslogtreecommitdiff
path: root/httemplate/elements/select-areacode.html
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2017-05-22 19:19:02 -0700
committerIvan Kohler <ivan@freeside.biz>2017-05-22 19:19:02 -0700
commita345db7e645ff8c86e5e655fed3c3a66d53c4958 (patch)
treec0adf657ea3edceea8fbcb09ad0d98c579066850 /httemplate/elements/select-areacode.html
parent93099398e2d1e740daceb37969d295d0fbcd411c (diff)
fix DID selection dropdowns, RT#75901
Diffstat (limited to 'httemplate/elements/select-areacode.html')
-rw-r--r--httemplate/elements/select-areacode.html12
1 files changed, 6 insertions, 6 deletions
diff --git a/httemplate/elements/select-areacode.html b/httemplate/elements/select-areacode.html
index 11b618847..e96832279 100644
--- a/httemplate/elements/select-areacode.html
+++ b/httemplate/elements/select-areacode.html
@@ -21,7 +21,7 @@
areacodeerror.style.display = 'none';
what.form.<% $opt{'prefix'} %>exchange.disabled = 'disabled';
- what.form.<% $opt{'prefix'} %>phonenum.disabled = 'disabled';
+ $('#<% $opt{'prefix'} %>phonenum').prop('disabled', true);
var state = what.options[what.selectedIndex].value;
@@ -29,16 +29,16 @@
var reply = JSON.parse(areacodes);
// blank the current areacode
- $('#<% $opt{prefix} %>areacode').empty;
+ $('#<% $opt{prefix} %>areacode').empty();
// blank the current exchange too
- $('#<% $opt{prefix} %>exchange').empty;
- jopt( $('#<% $opt{prefix} %>exchnage'), '', 'Select city / exchange' );
+ $('#<% $opt{prefix} %>exchange').empty();
+ jopt( $('#<% $opt{prefix} %>exchange'), '', 'Select city / exchange' );
// 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');
+ jopt($('#<% $opt{'prefix'} %>phonenum'), '', 'Select phone number');
}
% if ($opt{empty}) {