Fixed model binder for checkboxes

pull/6/head
Mark McDowall 11 years ago
parent c3c6c8ac01
commit 9345211536

@ -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');

Loading…
Cancel
Save