Skip to content

Commit 1919624

Browse files
committed
Solution to angular#1911
Here is the solution to issue angular#1911
1 parent e34519e commit 1919624

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ng/directive/input.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -643,7 +643,7 @@ function checkboxInputType(scope, element, attr, ctrl) {
643643
};
644644

645645
ctrl.$formatters.push(function(value) {
646-
return value === trueValue;
646+
return value == trueValue;
647647
});
648648

649649
ctrl.$parsers.push(function(value) {

0 commit comments

Comments
 (0)