summaryrefslogtreecommitdiff
path: root/httemplate/elements/select-areacode.html
diff options
context:
space:
mode:
authorivan <ivan>2010-03-26 22:25:37 +0000
committerivan <ivan>2010-03-26 22:25:37 +0000
commitaac878b0b40da048c95d1b0c74ed8932b5ba6690 (patch)
tree99a9574245b1842753500845f49a36e36f3e32c7 /httemplate/elements/select-areacode.html
parent7d3bca8381bc7e160d8f483b3e8c977368dc71b1 (diff)
fix E911 vs. DID selector on phone provision, RT#7819
Diffstat (limited to 'httemplate/elements/select-areacode.html')
-rw-r--r--httemplate/elements/select-areacode.html7
1 files changed, 4 insertions, 3 deletions
diff --git a/httemplate/elements/select-areacode.html b/httemplate/elements/select-areacode.html
index aa2d73b65..453205c02 100644
--- a/httemplate/elements/select-areacode.html
+++ b/httemplate/elements/select-areacode.html
@@ -12,7 +12,7 @@
what.options[length] = optionName;
}
- function <% $opt{'prefix'} %>state_changed(what, callback) {
+ function <% $opt{'state_prefix'} %>state_changed(what, callback) {
what.form.<% $opt{'prefix'} %>areacode.disabled = 'disabled';
what.form.<% $opt{'prefix'} %>areacode.style.display = 'none';
@@ -24,7 +24,7 @@
what.form.<% $opt{'prefix'} %>exchange.disabled = 'disabled';
what.form.<% $opt{'prefix'} %>phonenum.disabled = 'disabled';
- state = what.options[what.selectedIndex].value;
+ var state = what.options[what.selectedIndex].value;
function <% $opt{'prefix'} %>update_areacodes(areacodes) {
@@ -86,6 +86,7 @@
my %opt = @_;
-$opt{disabled} = 'disabled' unless exists $opt{disabled};
+$opt{disabled} = 'disabled' unless exists $opt{disabled};
+$opt{state_prefix} = $opt{prefix} unless exists $opt{state_prefix};
</%init>