diff options
Diffstat (limited to 'src/selector-native.js')
-rw-r--r-- | src/selector-native.js | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/selector-native.js b/src/selector-native.js index 58a0cec41..cec99cef2 100644 --- a/src/selector-native.js +++ b/src/selector-native.js @@ -1,3 +1,7 @@ +define([ + "./core" +], function( jQuery ) { + /* * Optional (non-Sizzle) selector module for custom builds. * @@ -23,7 +27,8 @@ * customize this stub for the project's specific needs. */ -var selector_hasDuplicate, +var docElem = window.document.documentElement, + selector_hasDuplicate, matches = docElem.webkitMatchesSelector || docElem.mozMatchesSelector || docElem.oMatchesSelector || @@ -162,3 +167,5 @@ jQuery.extend( jQuery.find, { return elem.getAttribute( name ); } }); + +}); |