Fixed a bug in the jQuery.prop() addition and fixed the test cases to represent the current set of features.

This commit is contained in:
John Resig 2007-01-08 01:17:28 +00:00
parent b603ca03c4
commit d0e8a2452e
2 changed files with 4 additions and 8 deletions

View file

@ -67,13 +67,9 @@ test("attr(String)", function() {
ok( $('#form').attr('action').indexOf("formaction") >= 0, 'Check for action attribute' );
});
test("attr(String, Function|String)", function() {
test("attr(String, Function)", function() {
expect(1);
ok( $('#text1').attr('value', function() { return this.id })[0].value == "text1", "Set value from id" );
ok( $('#text2').attr('value', "${this.id}")[0].value == "text2", "Set value from id" );
reset();
$('#text1, #text2').attr({value: "${this.id + 'foobar'}"});
ok( $('#text1')[0].value == "text1foobar", "Set value from id" );
ok( $('#text2')[0].value == "text2foobar", "Set value from id" );
});
test("attr(Hash)", function() {

View file

@ -1235,7 +1235,7 @@ jQuery.extend({
prop: function(elem, key, value){
// Handle executable functions
return value.constructor == Function &&
value.call( elem, val ) || value;
value.call( elem ) || value;
},
className: {