4321 returns empty jquery object

This commit is contained in:
rwldrn 2011-01-01 17:13:04 -05:00
parent eed3803c98
commit 037d6bd5c3
2 changed files with 4 additions and 2 deletions

View file

@ -17,7 +17,8 @@ var jQuery = function( selector, context ) {
// A simple way to check for HTML strings or ID strings
// (both of which we optimize for)
quickExpr = /^(?:[^<]*(<[\w\W]+>)[^>]*$|#([\w\-]+)$)/,
quickExpr = /^(?:[^<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/,
// Is it a simple selector
isSimple = /^.[^:#\[\.,]*$/,

View file

@ -12,7 +12,7 @@ test("Basic requirements", function() {
});
test("jQuery()", function() {
expect(24);
expect(25);
strictEqual( commonJSDefined, jQuery, "CommonJS registered (Bug #7102)" );
@ -22,6 +22,7 @@ test("jQuery()", function() {
equals( jQuery(undefined).length, 0, "jQuery(undefined) === jQuery([])" );
equals( jQuery(null).length, 0, "jQuery(null) === jQuery([])" );
equals( jQuery("").length, 0, "jQuery('') === jQuery([])" );
equals( jQuery("#").length, 0, "jQuery('#') === jQuery([])" );
var obj = jQuery("div")
equals( jQuery(obj).selector, "div", "jQuery(jQueryObj) == jQueryObj" );