Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 45a36e6

Browse files
author
Jan Niehusmann
committed
fix($compile): handle boolean attributes in @ bindings
Commit db5e0ff handles initial values of boolean attributes. The same change needs to be applied inside the attrs.$observe() call.
1 parent 735be18 commit 45a36e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ng/compile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2994,7 +2994,7 @@ function $CompileProvider($provide, $$sanitizeUriProvider) {
29942994
destination[scopeName] = attrs[attrName] = void 0;
29952995
}
29962996
attrs.$observe(attrName, function(value) {
2997-
if (isString(value)) {
2997+
if (isString(value) || isBoolean(value)) {
29982998
destination[scopeName] = value;
29992999
}
30003000
});

0 commit comments

Comments
 (0)