1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-17 15:02:34 +02:00

Fixed model binder for checkboxes

This commit is contained in:
Mark McDowall 2013-04-27 23:48:06 -07:00
parent c3c6c8ac01
commit 9345211536

View File

@ -412,7 +412,8 @@
break;
case 'checkbox':
if (convertedValue) {
el.attr('checked', 'checked');
//Fixing this while we wait for an official update
el.prop('checked', 'checked');
}
else {
el.removeAttr('checked');