Fixed issues with @* and @foo selectors. Ticket #2
authorJohn Resig <jeresig@gmail.com>
Fri, 16 Jun 2006 02:18:04 +0000 (02:18 +0000)
committerJohn Resig <jeresig@gmail.com>
Fri, 16 Jun 2006 02:18:04 +0000 (02:18 +0000)
jquery/jquery.js

index 37c2b3f..c377f63 100644 (file)
@@ -496,7 +496,6 @@ $.g = {
                disabled: "a.disabled",
                checked: "a.checked"
        },
-       // TODO: Write getAttribute helper
        ".": "$.hasWord(a,m[2])",
        "@": {
                "=": "$.attr(a,m[3]) == m[4]",
@@ -661,7 +660,7 @@ $.filter = function(t,r,not) {
        }
        
        while ( t.length > 0 && t.match(/^[:\\.#\\[a-zA-Z\\*]/) ) {
-               var re = new RegExp( "^\\[ *@([a-z0-9\\(\\)_-]+) *([~!\\|\\*$^=]*) *'?\"?([^'\"]*)'?\"? *\\]", "i" );
+               var re = new RegExp( "^\\[ *@([a-z0-9\\*\\(\\)_-]+) *([~!\\|\\*$^=]*) *'?\"?([^'\"]*)'?\"? *\\]", "i" );
                var m = re.exec(t);
                
                if ( m !== null ) {