From a08cbc02e78e789a66e9af771c410e8ad1646e25 Mon Sep 17 00:00:00 2001
From: Vojta Jina
Date: Fri, 23 Mar 2012 15:53:04 -0700
Subject: feat($compile): do not interpolate boolean attributes, rather
evaluate them
So that we can have non string values, e.g. ng-value="true" for radio inputs
Breaks boolean attrs are evaluated rather than interpolated
To migrate your code, change:
to:
Affected directives:
* ng-multiple
* ng-selected
* ng-checked
* ng-disabled
* ng-readonly
* ng-required
---
test/directive/inputSpec.js | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
(limited to 'test/directive/inputSpec.js')
diff --git a/test/directive/inputSpec.js b/test/directive/inputSpec.js
index 8d0e44b3..e5f083b3 100644
--- a/test/directive/inputSpec.js
+++ b/test/directive/inputSpec.js
@@ -941,8 +941,8 @@ describe('input', function() {
describe('required', function() {
- it('should allow bindings on required', function() {
- compileInput('');
+ it('should allow bindings on ng-required', function() {
+ compileInput('');
scope.$apply(function() {
scope.required = false;
--
cgit v1.2.3