Skip to content
Permalink
Browse files
Added a fix for h1 + h2 not working. (Bug #1361)
  • Loading branch information
jeresig committed Jul 20, 2007
1 parent e647a8a commit 97a6bdb
Showing 1 changed file with 1 addition and 1 deletion.
@@ -142,7 +142,7 @@ jQuery.extend({
if ( t.indexOf(" ") == 0 ) continue;
foundToken = true;
} else {
re = /^((\/?\.\.)|([>\/+~]))\s*([a-z]*)/i;
re = /^((\/?\.\.)|([>\/+~]))\s*(\w*)/i;

if ( (m = re.exec(t)) != null ) {
r = [];

0 comments on commit 97a6bdb

Please sign in to comment.