LSP - bugfix - val(), not value()..
This commit is contained in:
parent
9812ab6f41
commit
390be45914
1 changed files with 2 additions and 2 deletions
|
@ -749,9 +749,9 @@ function showTab(tabName,streamName) {
|
||||||
).append(
|
).append(
|
||||||
$('<label>').text('Type:').attr('for','limit-type').append(
|
$('<label>').text('Type:').attr('for','limit-type').append(
|
||||||
$('<select>').attr('id','limit-type').attr('objpath',objpath+'.type').addClass('isSetting').html(
|
$('<select>').attr('id','limit-type').attr('objpath',objpath+'.type').addClass('isSetting').html(
|
||||||
$('<option>').value('soft').text('Soft')
|
$('<option>').val('soft').text('Soft')
|
||||||
).append(
|
).append(
|
||||||
$('<option>').value('hard').text('Hard')
|
$('<option>').val('hard').text('Hard')
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
).append(
|
).append(
|
||||||
|
|
Loading…
Add table
Reference in a new issue