From: John Resig Date: Sat, 23 Dec 2006 17:54:35 +0000 (+0000) Subject: Fixed minor bug in jQuery.parse[1] expression. X-Git-Url: http://git.asbjorn.it/?a=commitdiff_plain;h=a960b2d3b50bd4077b646d020ef0ec3cd7328b88;hp=58b8f1ddb8650ed69907abb4972064c643933479;p=jquery.git Fixed minor bug in jQuery.parse[1] expression. --- diff --git a/src/jquery/jquery.js b/src/jquery/jquery.js index d21f685..4e9f4ac 100644 --- a/src/jquery/jquery.js +++ b/src/jquery/jquery.js @@ -1784,7 +1784,7 @@ jQuery.extend({ "\\[ *(@)S *([!*$^=]*) *('?\"?)(.*?)\\4 *\\]", // Match: [div], [div p] - "(\\[)\s*(.*?)\s*\\]", + "(\\[)\\s*(.*?)\\s*\\]", // Match: :contains('foo') "(:)S\\(\"?'?([^\\)]*?)\"?'?\\)",