diff options
author | timmywil <tim.willison@thisismedium.com> | 2011-04-04 14:22:58 -0400 |
---|---|---|
committer | timmywil <tim.willison@thisismedium.com> | 2011-04-04 14:22:58 -0400 |
commit | 94fff6ff625be9fbbb54db53d9acec63f0919370 (patch) | |
tree | beac4fe92429478b3e42bcaec09e61d39534cd67 | |
parent | 64a0005a3b5a168a421efa1d8b253de234620229 (diff) | |
download | jquery-94fff6ff625be9fbbb54db53d9acec63f0919370.tar.gz jquery-94fff6ff625be9fbbb54db53d9acec63f0919370.zip |
Remove the unused radiocheck regex
-rw-r--r-- | src/attributes.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/attributes.js b/src/attributes.js index 4c59a675f..c8106e986 100644 --- a/src/attributes.js +++ b/src/attributes.js @@ -6,8 +6,7 @@ var rclass = /[\n\t\r]/g, rspecialurl = /^(?:href|src|style)$/, rtype = /^(?:button|input)$/i, rfocusable = /^(?:button|input|object|select|textarea)$/i, - rclickable = /^a(?:rea)?$/i, - rradiocheck = /^(?:radio|checkbox)$/i; + rclickable = /^a(?:rea)?$/i; jQuery.props = { "for": "htmlFor", |