Scope 'document' locally (also useful for sandboxing). Patch from Andrea Giammarchi...
authorJohn Resig <jeresig@gmail.com>
Wed, 15 Jul 2009 12:35:57 +0000 (12:35 +0000)
committerJohn Resig <jeresig@gmail.com>
Wed, 15 Jul 2009 12:35:57 +0000 (12:35 +0000)
src/core.js

index cab3b54..ee4ac70 100644 (file)
@@ -12,6 +12,9 @@ var jQuery = function( selector, context ) {
        // Map over the $ in case of overwrite
        _$ = window.$,
 
+       // Use the correct document accordingly with window argument (sandbox)
+       document = window.document,
+
        // A central reference to the root jQuery(document)
        rootjQuery,