Closed stevekrile closed 7 years ago
When using the button binding, using numeric values causes the code to error:
This WORKS `
</div>`
And this FAILS
`
Consider changing code for Radio binding on row 903 from:
$radioButton = $(element).find('input[value="' + value.replace(/"/g, '\\"') + '"]'),
to
$radioButton = $(element).find('input[value="' + String(value).replace(/"/g, '\\"') + '"]'),
Fixed
When using the button binding, using numeric values causes the code to error:
This WORKS `
And this FAILS
`
Consider changing code for Radio binding on row 903 from:
$radioButton = $(element).find('input[value="' + value.replace(/"/g, '\\"') + '"]'),
to
$radioButton = $(element).find('input[value="' + String(value).replace(/"/g, '\\"') + '"]'),
Fixed