Skip to content
Permalink
Browse files
Fixed bug with singleTag matching in core.js.
  • Loading branch information
jeresig committed Nov 30, 2009
1 parent 84857ab commit 90ba57c
Showing 1 changed file with 1 addition and 1 deletion.
@@ -32,7 +32,7 @@ var jQuery = function( selector, context ) {
rtrim = /^\s+|\s+$/g,

// Match a standalone tag
rsingleTag = /<(\w+)\s*\/?>(?:<\/\1>)?$/,
rsingleTag = /^<(\w+)\s*\/?>(?:<\/\1>)?$/,

// Keep a UserAgent string for use with jQuery.browser
userAgent = navigator.userAgent.toLowerCase(),

0 comments on commit 90ba57c

Please sign in to comment.