aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Resig <jeresig@gmail.com>2006-12-23 17:54:35 +0000
committerJohn Resig <jeresig@gmail.com>2006-12-23 17:54:35 +0000
commita960b2d3b50bd4077b646d020ef0ec3cd7328b88 (patch)
treee777121f18f0740da615337b5a4f09a4a18cae8b
parent58b8f1ddb8650ed69907abb4972064c643933479 (diff)
downloadjquery-a960b2d3b50bd4077b646d020ef0ec3cd7328b88.tar.gz
jquery-a960b2d3b50bd4077b646d020ef0ec3cd7328b88.zip
Fixed minor bug in jQuery.parse[1] expression.
-rw-r--r--src/jquery/jquery.js2
1 files changed, 1 insertions, 1 deletions
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\\(\"?'?([^\\)]*?)\"?'?\\)",