LSP - bugfix host limits not being added/editable
This commit is contained in:
parent
d277ef3922
commit
4ad0a661b4
1 changed files with 1 additions and 2 deletions
|
@ -866,7 +866,6 @@ function changeLimitName(limitValue) {
|
||||||
$('<option>').val('').text('[Select a country]')
|
$('<option>').val('').text('[Select a country]')
|
||||||
).bind('change',function(){
|
).bind('change',function(){
|
||||||
makeLimitValue();
|
makeLimitValue();
|
||||||
|
|
||||||
});
|
});
|
||||||
for (var index in countrylist) {
|
for (var index in countrylist) {
|
||||||
$field.append(
|
$field.append(
|
||||||
|
@ -925,7 +924,7 @@ function changeLimitName(limitValue) {
|
||||||
limitValue = limitValue.substr(1).split(' ');
|
limitValue = limitValue.substr(1).split(' ');
|
||||||
for (var index in limitValue) {
|
for (var index in limitValue) {
|
||||||
$('#field_container').append(
|
$('#field_container').append(
|
||||||
$field.clone().val(limitValue[index])
|
$field.clone(true).val(limitValue[index])
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
$('#field_container').append(
|
$('#field_container').append(
|
||||||
|
|
Loading…
Add table
Reference in a new issue