Added a fix for .append( Number )

This commit is contained in:
John Resig 2007-01-11 18:44:53 +00:00
parent f368960479
commit bfa79591b3

View file

@ -1389,6 +1389,9 @@ jQuery.extend({
if ( !arg ) continue; if ( !arg ) continue;
if ( arg.constructor == Number )
arg = arg.toString();
// Convert html string into DOM nodes // Convert html string into DOM nodes
if ( typeof arg == "string" ) { if ( typeof arg == "string" ) {
// Trim whitespace, otherwise indexOf won't work as expected // Trim whitespace, otherwise indexOf won't work as expected