aboutsummaryrefslogtreecommitdiffstats
path: root/test/directive/ngNonBindableSpec.js
diff options
context:
space:
mode:
authorMisko Hevery2012-03-13 14:42:26 -0700
committerMisko Hevery2012-03-13 16:59:03 -0700
commitde9464c1431906883bdf180fb00615e6fa371577 (patch)
tree5002990279d089cae2577ab98468217258455dec /test/directive/ngNonBindableSpec.js
parent31cd5803102ba93f8b93cd5304aea4ade50f96ab (diff)
downloadangular.js-de9464c1431906883bdf180fb00615e6fa371577.tar.bz2
f(compile): boolean attributes too agresive
- compiler would rewrite boolean attributes on all elements. This is too aggressive and interferes with some third-party frameworks
Diffstat (limited to 'test/directive/ngNonBindableSpec.js')
-rw-r--r--test/directive/ngNonBindableSpec.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/directive/ngNonBindableSpec.js b/test/directive/ngNonBindableSpec.js
index 4f69528b..1f7bf25d 100644
--- a/test/directive/ngNonBindableSpec.js
+++ b/test/directive/ngNonBindableSpec.js
@@ -10,7 +10,7 @@ describe('ng-non-bindable', function() {
});
- iit('should prevent compilation of the owning element and its children',
+ it('should prevent compilation of the owning element and its children',
inject(function($rootScope, $compile) {
element = $compile('<div ng-non-bindable text="{{name}}"><span ng-bind="name"></span></div>')($rootScope);
$rootScope.name = 'misko';