scratch – Diff between revs 58 and 125

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 58 Rev 125
Line 1... Line 1...
1 // Initialize a jQuery object 1 // Initialize a jQuery object
2 define( [ 2 define([
3 "../core", 3 "../core",
4 "../var/document", -  
5 "./var/rsingleTag", 4 "./var/rsingleTag",
6 "../traversing/findFilter" 5 "../traversing/findFilter"
7 ], function( jQuery, document, rsingleTag ) { 6 ], function( jQuery, rsingleTag ) {
8   -  
9 "use strict"; -  
Line 10... Line 7...
10   7  
11 // A central reference to the root jQuery(document) 8 // A central reference to the root jQuery(document)
Line 12... Line 9...
12 var rootjQuery, 9 var rootjQuery,
13   10  
14 // A simple way to check for HTML strings 11 // A simple way to check for HTML strings
15 // Prioritize #id over <tag> to avoid XSS via location.hash (#9521) -  
16 // Strict HTML recognition (#11290: must start with <) 12 // Prioritize #id over <tag> to avoid XSS via location.hash (#9521)
Line 17... Line 13...
17 // Shortcut simple #id case for speed 13 // Strict HTML recognition (#11290: must start with <)
18 rquickExpr = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/, 14 rquickExpr = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,
Line 19... Line 15...
19   15  
20 <[\w\W]+> init = jQuery.fn.init = function( selector, context, root ) { 16 <[\w\W]+> init = jQuery.fn.init = function( selector, context ) {
21 <[\w\W]+> var match, elem; 17 <[\w\W]+> var match, elem;
22   18  
Line 23... Line -...
23 <[\w\W]+> // HANDLE: $(""), $(null), $(undefined), $(false) -  
24 <[\w\W]+> if ( !selector ) { -  
25 <[\w\W]+> return this; -  
26 <[\w\W]+> } -  
27   19 <[\w\W]+> // HANDLE: $(""), $(null), $(undefined), $(false)
28 <[\w\W]+> // Method init() accepts an alternate rootjQuery 20 <[\w\W]+> if ( !selector ) {
29 <[\w\W]+> // so migrate can support jQuery.sub (gh-2101) -  
30 <[\w\W]+> root = root || rootjQuery; 21 <[\w\W]+> return this;
31   -  
32 <[\w\W]+> // Handle HTML strings -  
33 <[\w\W]+> if ( typeof selector === "string" ) { 22 <[\w\W]+> }
34 <[\w\W]+> if ( selector[ 0 ] === "<" && 23  
Line 35... Line 24...
35 <[\w\W]+> selector[ selector.length - 1 ] === ">" && 24 <[\w\W]+> // Handle HTML strings
36 <[\w\W]+> selector.length >= 3 ) { 25 <[\w\W]+> if ( typeof selector === "string" ) {
37   26 <[\w\W]+> if ( selector[0] === "<" && selector[ selector.length - 1 ] === ">" && selector.length >= 3 ) {
Line 38... Line 27...
38 <[\w\W]+> // Assume that strings that start and end with <> are HTML and skip the regex check 27 <[\w\W]+> // Assume that strings that start and end with <> are HTML and skip the regex check
39 <[\w\W]+> match = [ null, selector, null ]; 28 <[\w\W]+> match = [ null, selector, null ];
Line 40... Line 29...
40   29  
41 <[\w\W]+> } else { 30 <[\w\W]+> } else {
42 <[\w\W]+> match = rquickExpr.exec( selector ); 31 <[\w\W]+> match = rquickExpr.exec( selector );
Line 43... Line 32...
43 <[\w\W]+> } 32 <[\w\W]+> }
44   33  
45 <[\w\W]+> // Match html or make sure no context is specified for #id 34 <[\w\W]+> // Match html or make sure no context is specified for #id
46 <[\w\W]+> if ( match && ( match[ 1 ] || !context ) ) { 35 <[\w\W]+> if ( match && (match[1] || !context) ) {
47   36  
48 <[\w\W]+> // HANDLE: $(html) -> $(array) 37 <[\w\W]+> // HANDLE: $(html) -> $(array)
49 <[\w\W]+> if ( match[ 1 ] ) { 38 <[\w\W]+> if ( match[1] ) {
Line 50... Line 39...
50 <[\w\W]+> context = context instanceof jQuery ? context[ 0 ] : context; 39 <[\w\W]+> context = context instanceof jQuery ? context[0] : context;
51   40  
52 <[\w\W]+> // Option to run scripts is true for back-compat 41 <[\w\W]+> // Option to run scripts is true for back-compat
53 <[\w\W]+> // Intentionally let the error be thrown if parseHTML is not present -  
54 <[\w\W]+> jQuery.merge( this, jQuery.parseHTML( 42 <[\w\W]+> // Intentionally let the error be thrown if parseHTML is not present
55 <[\w\W]+> match[ 1 ], 43 <[\w\W]+> jQuery.merge( this, jQuery.parseHTML(
56 <[\w\W]+> context && context.nodeType ? context.ownerDocument || context : document, 44 <[\w\W]+> match[1],
Line 57... Line 45...
57 <[\w\W]+> true 45 <[\w\W]+> context && context.nodeType ? context.ownerDocument || context : document,
Line 74... Line 62...
74   62  
Line 75... Line 63...
75 <[\w\W]+> return this; 63 <[\w\W]+> return this;
76   64  
77 <[\w\W]+> // HANDLE: $(#id) 65 <[\w\W]+> // HANDLE: $(#id)
78 <[\w\W]+> } else { -  
79 <[\w\W]+> elem = document.getElementById( match[ 2 ] ); -  
Line -... Line 66...
-   66 <[\w\W]+> } else {
-   67 <[\w\W]+> elem = document.getElementById( match[2] );
-   68  
80   69 <[\w\W]+> // Support: Blackberry 4.6
81 <[\w\W]+> if ( elem ) { -  
82   70 <[\w\W]+> // gEBID returns nodes no longer in the document (#6963)
-   71 <[\w\W]+> if ( elem && elem.parentNode ) {
83 <[\w\W]+> // Inject the element directly into the jQuery object 72 <[\w\W]+> // Inject the element directly into the jQuery object
-   73 <[\w\W]+> this.length = 1;
-   74 <[\w\W]+> this[0] = elem;
-   75 <[\w\W]+> }
84 <[\w\W]+> this[ 0 ] = elem; 76  
85 <[\w\W]+> this.length = 1; 77 <[\w\W]+> this.context = document;
Line 86... Line 78...
86 <[\w\W]+> } 78 <[\w\W]+> this.selector = selector;
87 <[\w\W]+> return this; 79 <[\w\W]+> return this;
88 <[\w\W]+> } 80 <[\w\W]+> }
Line 89... Line 81...
89   81  
90 <[\w\W]+> // HANDLE: $(expr, $(...)) 82 <[\w\W]+> // HANDLE: $(expr, $(...))
91 <[\w\W]+> } else if ( !context || context.jquery ) { 83 <[\w\W]+> } else if ( !context || context.jquery ) {
92 <[\w\W]+> return ( context || root ).find( selector ); 84 <[\w\W]+> return ( context || rootjQuery ).find( selector );
93   85  
Line 94... Line 86...
94 <[\w\W]+> // HANDLE: $(expr, context) 86 <[\w\W]+> // HANDLE: $(expr, context)
95 <[\w\W]+> // (which is just equivalent to: $(context).find(expr) 87 <[\w\W]+> // (which is just equivalent to: $(context).find(expr)
96 <[\w\W]+> } else { 88 <[\w\W]+> } else {
97 <[\w\W]+> return this.constructor( context ).find( selector ); 89 <[\w\W]+> return this.constructor( context ).find( selector );
98 <[\w\W]+> } 90 <[\w\W]+> }
Line 99... Line 91...
99   91  
100 <[\w\W]+> // HANDLE: $(DOMElement) 92 <[\w\W]+> // HANDLE: $(DOMElement)
101 <[\w\W]+> } else if ( selector.nodeType ) { 93 <[\w\W]+> } else if ( selector.nodeType ) {
102 <[\w\W]+> this[ 0 ] = selector; 94 <[\w\W]+> this.context = this[0] = selector;
103 <[\w\W]+> this.length = 1; 95 <[\w\W]+> this.length = 1;
104 <[\w\W]+> return this; -  
105   96 <[\w\W]+> return this;
106 <[\w\W]+> // HANDLE: $(function) 97  
107 <[\w\W]+> // Shortcut for document ready 98 <[\w\W]+> // HANDLE: $(function)
Line -... Line 99...
-   99 <[\w\W]+> // Shortcut for document ready
-   100 <[\w\W]+> } else if ( jQuery.isFunction( selector ) ) {
-   101 <[\w\W]+> return typeof rootjQuery.ready !== "undefined" ?
-   102 <[\w\W]+> rootjQuery.ready( selector ) :
-   103 <[\w\W]+> // Execute immediately if ready is not present
108 <[\w\W]+> } else if ( jQuery.isFunction( selector ) ) { 104 <[\w\W]+> selector( jQuery );
109 <[\w\W]+> return root.ready !== undefined ? 105 <[\w\W]+> }
Line 110... Line 106...
110 <[\w\W]+> root.ready( selector ) : 106  
111   107 <[\w\W]+> if ( selector.selector !== undefined ) {
Line 122... Line 118...
122 <[\w\W]+>// Initialize central reference 118 <[\w\W]+>// Initialize central reference
123 <[\w\W]+>rootjQuery = jQuery( document ); 119 <[\w\W]+>rootjQuery = jQuery( document );
Line 124... Line 120...
124   120  
Line 125... Line 121...
125 <[\w\W]+>return init; 121 <[\w\W]+>return init;