Skip to content

Commit

Permalink
Fixed test typo
Browse files Browse the repository at this point in the history
  • Loading branch information
wagenet committed Jun 9, 2011
1 parent 3b30aa3 commit b00f012
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -898,7 +898,7 @@ test("should be able to bind class attribute with {{bindAttr}}", function() {
});

test("should be able to bind boolean element attributes using {{bindAttr}}", function() {
var template = SC.Handlebars.compile('<input type="check" {{bindAttr disabled="content.isDisabled" checked="content.isChecked"}} />');
var template = SC.Handlebars.compile('<input type="checkbox" {{bindAttr disabled="content.isDisabled" checked="content.isChecked"}} />');
var content = SC.Object.create({
isDisabled: false,
isChecked: true
Expand Down

0 comments on commit b00f012

Please sign in to comment.