From: John Resig Date: Sat, 23 Dec 2006 17:54:35 +0000 (+0000) Subject: Fixed minor bug in jQuery.parse[1] expression. X-Git-Tag: 1.1a~72 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=a960b2d3b50bd4077b646d020ef0ec3cd7328b88;p=jquery.git Fixed minor bug in jQuery.parse[1] expression. --- diff --git a/src/jquery/jquery.js b/src/jquery/jquery.js index d21f68581..4e9f4aca0 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\\(\"?'?([^\\)]*?)\"?'?\\)",