diff options
author | Timmy Willison <timmywillisn@gmail.com> | 2013-09-09 11:26:21 -0400 |
---|---|---|
committer | Timmy Willison <timmywillisn@gmail.com> | 2013-09-09 11:34:23 -0400 |
commit | 3b53b75160606610cc8f87404f89fc9e10441c4b (patch) | |
tree | b20600c885ee70e7b9cc7c880fc7a2cf141b56a8 /src/traversing.js | |
parent | 2fe09ceaf9c261d8e7fbdf37a13b21bfd85da962 (diff) | |
download | jquery-3b53b75160606610cc8f87404f89fc9e10441c4b.tar.gz jquery-3b53b75160606610cc8f87404f89fc9e10441c4b.zip |
Break jQuery.access out into its own module to separate it from core; Adjust CommonJS+AMD build support to include non-var dependencies. Convert modules with more than a few dependencies to use CJS+AMD syntax.
Diffstat (limited to 'src/traversing.js')
-rw-r--r-- | src/traversing.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/traversing.js b/src/traversing.js index 12fd74deb..a0c7d4843 100644 --- a/src/traversing.js +++ b/src/traversing.js @@ -3,6 +3,7 @@ define([ "./var/indexOf", "./selector" ], function( jQuery, indexOf ) { + var isSimple = /^.[^:#\[\.,]*$/, rparentsprev = /^(?:parents|prev(?:Until|All))/, rneedsContext = jQuery.expr.match.needsContext, |