fixes to make it pass on IE

This commit is contained in:
Misko Hevery
2010-01-25 23:49:52 -08:00
parent ba9eef40cf
commit a2540fd581
7 changed files with 9 additions and 7 deletions

View File

@@ -401,7 +401,7 @@ BinderTest.prototype.testRepeaterUpdateBindings = function(){
};
BinderTest.prototype.testRepeaterContentDoesNotBind = function(){
var a = compile('<ul><LI ng-repeat="item in model.items"><span ng-bind="item.a"/></li></ul>');
var a = compile('<ul><LI ng-repeat="item in model.items"><span ng-bind="item.a"></span></li></ul>');
a.scope.set('model', {items:[{a:"A"}]});
a.binder.updateView();
assertEquals('<ul>' +