scratch – Blame information for rev 58

Subversion Repositories:
Rev:
Rev Author Line No. Line
58 office 1 /*!
2 * jQuery JavaScript Library v3.1.1
3 * https://jquery.com/
4 *
5 * Includes Sizzle.js
6 * https://sizzlejs.com/
7 *
8 * Copyright jQuery Foundation and other contributors
9 * Released under the MIT license
10 * https://jquery.org/license
11 *
12 * Date: 2016-09-22T22:30Z
13 */
14 ( function( global, factory ) {
15  
16 "use strict";
17  
18 if ( typeof module === "object" && typeof module.exports === "object" ) {
19  
20 // For CommonJS and CommonJS-like environments where a proper `window`
21 // is present, execute the factory and get jQuery.
22 // For environments that do not have a `window` with a `document`
23 // (such as Node.js), expose a factory as module.exports.
24 // This accentuates the need for the creation of a real `window`.
25 // e.g. var jQuery = require("jquery")(window);
26 // See ticket #14549 for more info.
27 module.exports = global.document ?
28 factory( global, true ) :
29 function( w ) {
30 if ( !w.document ) {
31 throw new Error( "jQuery requires a window with a document" );
32 }
33 return factory( w );
34 };
35 } else {
36 factory( global );
37 }
38  
39 // Pass this if window is not defined yet
40 } )( typeof window !== "undefined" ? window : this, function( window, noGlobal ) {
41  
42 // Edge <= 12 - 13+, Firefox <=18 - 45+, IE 10 - 11, Safari 5.1 - 9+, iOS 6 - 9.1
43 // throw exceptions when non-strict code (e.g., ASP.NET 4.5) accesses strict mode
44 // arguments.callee.caller (trac-13335). But as of jQuery 3.0 (2016), strict mode should be common
45 // enough that all such attempts are guarded in a try block.
46 "use strict";
47  
48 var arr = [];
49  
50 var document = window.document;
51  
52 var getProto = Object.getPrototypeOf;
53  
54 var slice = arr.slice;
55  
56 var concat = arr.concat;
57  
58 var push = arr.push;
59  
60 var indexOf = arr.indexOf;
61  
62 var class2type = {};
63  
64 var toString = class2type.toString;
65  
66 var hasOwn = class2type.hasOwnProperty;
67  
68 var fnToString = hasOwn.toString;
69  
70 var ObjectFunctionString = fnToString.call( Object );
71  
72 var support = {};
73  
74  
75  
76 function DOMEval( code, doc ) {
77 doc = doc || document;
78  
79 var script = doc.createElement( "script" );
80  
81 script.text = code;
82 doc.head.appendChild( script ).parentNode.removeChild( script );
83 }
84 /* global Symbol */
85 // Defining this global in .eslintrc.json would create a danger of using the global
86 // unguarded in another place, it seems safer to define global only for this module
87  
88  
89  
90 var
91 version = "3.1.1",
92  
93 // Define a local copy of jQuery
94 jQuery = function( selector, context ) {
95  
96 // The jQuery object is actually just the init constructor 'enhanced'
97 // Need init if jQuery is called (just allow error to be thrown if not included)
98 return new jQuery.fn.init( selector, context );
99 },
100  
101 // Support: Android <=4.0 only
102 // Make sure we trim BOM and NBSP
103 rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,
104  
105 // Matches dashed string for camelizing
106 rmsPrefix = /^-ms-/,
107 rdashAlpha = /-([a-z])/g,
108  
109 // Used by jQuery.camelCase as callback to replace()
110 fcamelCase = function( all, letter ) {
111 return letter.toUpperCase();
112 };
113  
114 jQuery.fn = jQuery.prototype = {
115  
116 // The current version of jQuery being used
117 jquery: version,
118  
119 constructor: jQuery,
120  
121 // The default length of a jQuery object is 0
122 length: 0,
123  
124 toArray: function() {
125 return slice.call( this );
126 },
127  
128 // Get the Nth element in the matched element set OR
129 // Get the whole matched element set as a clean array
130 get: function( num ) {
131  
132 // Return all the elements in a clean array
133 if ( num == null ) {
134 return slice.call( this );
135 }
136  
137 // Return just the one element from the set
138 return num < 0 ? this[ num + this.length ] : this[ num ];
139 },
140  
141 // Take an array of elements and push it onto the stack
142 // (returning the new matched element set)
143 pushStack: function( elems ) {
144  
145 // Build a new jQuery matched element set
146 var ret = jQuery.merge( this.constructor(), elems );
147  
148 // Add the old object onto the stack (as a reference)
149 ret.prevObject = this;
150  
151 // Return the newly-formed element set
152 return ret;
153 },
154  
155 // Execute a callback for every element in the matched set.
156 each: function( callback ) {
157 return jQuery.each( this, callback );
158 },
159  
160 map: function( callback ) {
161 return this.pushStack( jQuery.map( this, function( elem, i ) {
162 return callback.call( elem, i, elem );
163 } ) );
164 },
165  
166 slice: function() {
167 return this.pushStack( slice.apply( this, arguments ) );
168 },
169  
170 first: function() {
171 return this.eq( 0 );
172 },
173  
174 last: function() {
175 return this.eq( -1 );
176 },
177  
178 eq: function( i ) {
179 var len = this.length,
180 j = +i + ( i < 0 ? len : 0 );
181 return this.pushStack( j >= 0 && j < len ? [ this[ j ] ] : [] );
182 },
183  
184 end: function() {
185 return this.prevObject || this.constructor();
186 },
187  
188 // For internal use only.
189 // Behaves like an Array's method, not like a jQuery method.
190 push: push,
191 sort: arr.sort,
192 splice: arr.splice
193 };
194  
195 jQuery.extend = jQuery.fn.extend = function() {
196 var options, name, src, copy, copyIsArray, clone,
197 target = arguments[ 0 ] || {},
198 i = 1,
199 length = arguments.length,
200 deep = false;
201  
202 // Handle a deep copy situation
203 if ( typeof target === "boolean" ) {
204 deep = target;
205  
206 // Skip the boolean and the target
207 target = arguments[ i ] || {};
208 i++;
209 }
210  
211 // Handle case when target is a string or something (possible in deep copy)
212 if ( typeof target !== "object" && !jQuery.isFunction( target ) ) {
213 target = {};
214 }
215  
216 // Extend jQuery itself if only one argument is passed
217 if ( i === length ) {
218 target = this;
219 i--;
220 }
221  
222 for ( ; i < length; i++ ) {
223  
224 // Only deal with non-null/undefined values
225 if ( ( options = arguments[ i ] ) != null ) {
226  
227 // Extend the base object
228 for ( name in options ) {
229 src = target[ name ];
230 copy = options[ name ];
231  
232 // Prevent never-ending loop
233 if ( target === copy ) {
234 continue;
235 }
236  
237 // Recurse if we're merging plain objects or arrays
238 if ( deep && copy && ( jQuery.isPlainObject( copy ) ||
239 ( copyIsArray = jQuery.isArray( copy ) ) ) ) {
240  
241 if ( copyIsArray ) {
242 copyIsArray = false;
243 clone = src && jQuery.isArray( src ) ? src : [];
244  
245 } else {
246 clone = src && jQuery.isPlainObject( src ) ? src : {};
247 }
248  
249 // Never move original objects, clone them
250 target[ name ] = jQuery.extend( deep, clone, copy );
251  
252 // Don't bring in undefined values
253 } else if ( copy !== undefined ) {
254 target[ name ] = copy;
255 }
256 }
257 }
258 }
259  
260 // Return the modified object
261 return target;
262 };
263  
264 jQuery.extend( {
265  
266 // Unique for each copy of jQuery on the page
267 expando: "jQuery" + ( version + Math.random() ).replace( /\D/g, "" ),
268  
269 // Assume jQuery is ready without the ready module
270 isReady: true,
271  
272 error: function( msg ) {
273 throw new Error( msg );
274 },
275  
276 noop: function() {},
277  
278 isFunction: function( obj ) {
279 return jQuery.type( obj ) === "function";
280 },
281  
282 isArray: Array.isArray,
283  
284 isWindow: function( obj ) {
285 return obj != null && obj === obj.window;
286 },
287  
288 isNumeric: function( obj ) {
289  
290 // As of jQuery 3.0, isNumeric is limited to
291 // strings and numbers (primitives or objects)
292 // that can be coerced to finite numbers (gh-2662)
293 var type = jQuery.type( obj );
294 return ( type === "number" || type === "string" ) &&
295  
296 // parseFloat NaNs numeric-cast false positives ("")
297 // ...but misinterprets leading-number strings, particularly hex literals ("0x...")
298 // subtraction forces infinities to NaN
299 !isNaN( obj - parseFloat( obj ) );
300 },
301  
302 isPlainObject: function( obj ) {
303 var proto, Ctor;
304  
305 // Detect obvious negatives
306 // Use toString instead of jQuery.type to catch host objects
307 if ( !obj || toString.call( obj ) !== "[object Object]" ) {
308 return false;
309 }
310  
311 proto = getProto( obj );
312  
313 // Objects with no prototype (e.g., `Object.create( null )`) are plain
314 if ( !proto ) {
315 return true;
316 }
317  
318 // Objects with prototype are plain iff they were constructed by a global Object function
319 Ctor = hasOwn.call( proto, "constructor" ) && proto.constructor;
320 return typeof Ctor === "function" && fnToString.call( Ctor ) === ObjectFunctionString;
321 },
322  
323 isEmptyObject: function( obj ) {
324  
325 /* eslint-disable no-unused-vars */
326 // See https://github.com/eslint/eslint/issues/6125
327 var name;
328  
329 for ( name in obj ) {
330 return false;
331 }
332 return true;
333 },
334  
335 type: function( obj ) {
336 if ( obj == null ) {
337 return obj + "";
338 }
339  
340 // Support: Android <=2.3 only (functionish RegExp)
341 return typeof obj === "object" || typeof obj === "function" ?
342 class2type[ toString.call( obj ) ] || "object" :
343 typeof obj;
344 },
345  
346 // Evaluates a script in a global context
347 globalEval: function( code ) {
348 DOMEval( code );
349 },
350  
351 // Convert dashed to camelCase; used by the css and data modules
352 // Support: IE <=9 - 11, Edge 12 - 13
353 // Microsoft forgot to hump their vendor prefix (#9572)
354 camelCase: function( string ) {
355 return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase );
356 },
357  
358 nodeName: function( elem, name ) {
359 return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase();
360 },
361  
362 each: function( obj, callback ) {
363 var length, i = 0;
364  
365 if ( isArrayLike( obj ) ) {
366 length = obj.length;
367 for ( ; i < length; i++ ) {
368 if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) {
369 break;
370 }
371 }
372 } else {
373 for ( i in obj ) {
374 if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) {
375 break;
376 }
377 }
378 }
379  
380 return obj;
381 },
382  
383 // Support: Android <=4.0 only
384 trim: function( text ) {
385 return text == null ?
386 "" :
387 ( text + "" ).replace( rtrim, "" );
388 },
389  
390 // results is for internal usage only
391 makeArray: function( arr, results ) {
392 var ret = results || [];
393  
394 if ( arr != null ) {
395 if ( isArrayLike( Object( arr ) ) ) {
396 jQuery.merge( ret,
397 typeof arr === "string" ?
398 [ arr ] : arr
399 );
400 } else {
401 push.call( ret, arr );
402 }
403 }
404  
405 return ret;
406 },
407  
408 inArray: function( elem, arr, i ) {
409 return arr == null ? -1 : indexOf.call( arr, elem, i );
410 },
411  
412 // Support: Android <=4.0 only, PhantomJS 1 only
413 // push.apply(_, arraylike) throws on ancient WebKit
414 merge: function( first, second ) {
415 var len = +second.length,
416 j = 0,
417 i = first.length;
418  
419 for ( ; j < len; j++ ) {
420 first[ i++ ] = second[ j ];
421 }
422  
423 first.length = i;
424  
425 return first;
426 },
427  
428 grep: function( elems, callback, invert ) {
429 var callbackInverse,
430 matches = [],
431 i = 0,
432 length = elems.length,
433 callbackExpect = !invert;
434  
435 // Go through the array, only saving the items
436 // that pass the validator function
437 for ( ; i < length; i++ ) {
438 callbackInverse = !callback( elems[ i ], i );
439 if ( callbackInverse !== callbackExpect ) {
440 matches.push( elems[ i ] );
441 }
442 }
443  
444 return matches;
445 },
446  
447 // arg is for internal usage only
448 map: function( elems, callback, arg ) {
449 var length, value,
450 i = 0,
451 ret = [];
452  
453 // Go through the array, translating each of the items to their new values
454 if ( isArrayLike( elems ) ) {
455 length = elems.length;
456 for ( ; i < length; i++ ) {
457 value = callback( elems[ i ], i, arg );
458  
459 if ( value != null ) {
460 ret.push( value );
461 }
462 }
463  
464 // Go through every key on the object,
465 } else {
466 for ( i in elems ) {
467 value = callback( elems[ i ], i, arg );
468  
469 if ( value != null ) {
470 ret.push( value );
471 }
472 }
473 }
474  
475 // Flatten any nested arrays
476 return concat.apply( [], ret );
477 },
478  
479 // A global GUID counter for objects
480 guid: 1,
481  
482 // Bind a function to a context, optionally partially applying any
483 // arguments.
484 proxy: function( fn, context ) {
485 var tmp, args, proxy;
486  
487 if ( typeof context === "string" ) {
488 tmp = fn[ context ];
489 context = fn;
490 fn = tmp;
491 }
492  
493 // Quick check to determine if target is callable, in the spec
494 // this throws a TypeError, but we will just return undefined.
495 if ( !jQuery.isFunction( fn ) ) {
496 return undefined;
497 }
498  
499 // Simulated bind
500 args = slice.call( arguments, 2 );
501 proxy = function() {
502 return fn.apply( context || this, args.concat( slice.call( arguments ) ) );
503 };
504  
505 // Set the guid of unique handler to the same of original handler, so it can be removed
506 proxy.guid = fn.guid = fn.guid || jQuery.guid++;
507  
508 return proxy;
509 },
510  
511 now: Date.now,
512  
513 // jQuery.support is not used in Core but other projects attach their
514 // properties to it so it needs to exist.
515 support: support
516 } );
517  
518 if ( typeof Symbol === "function" ) {
519 jQuery.fn[ Symbol.iterator ] = arr[ Symbol.iterator ];
520 }
521  
522 // Populate the class2type map
523 jQuery.each( "Boolean Number String Function Array Date RegExp Object Error Symbol".split( " " ),
524 function( i, name ) {
525 class2type[ "[object " + name + "]" ] = name.toLowerCase();
526 } );
527  
528 function isArrayLike( obj ) {
529  
530 // Support: real iOS 8.2 only (not reproducible in simulator)
531 // `in` check used to prevent JIT error (gh-2145)
532 // hasOwn isn't used here due to false negatives
533 // regarding Nodelist length in IE
534 var length = !!obj && "length" in obj && obj.length,
535 type = jQuery.type( obj );
536  
537 if ( type === "function" || jQuery.isWindow( obj ) ) {
538 return false;
539 }
540  
541 return type === "array" || length === 0 ||
542 typeof length === "number" && length > 0 && ( length - 1 ) in obj;
543 }
544 var Sizzle =
545 /*!
546 * Sizzle CSS Selector Engine v2.3.3
547 * https://sizzlejs.com/
548 *
549 * Copyright jQuery Foundation and other contributors
550 * Released under the MIT license
551 * http://jquery.org/license
552 *
553 * Date: 2016-08-08
554 */
555 (function( window ) {
556  
557 var i,
558 support,
559 Expr,
560 getText,
561 isXML,
562 tokenize,
563 compile,
564 select,
565 outermostContext,
566 sortInput,
567 hasDuplicate,
568  
569 // Local document vars
570 setDocument,
571 document,
572 docElem,
573 documentIsHTML,
574 rbuggyQSA,
575 rbuggyMatches,
576 matches,
577 contains,
578  
579 // Instance-specific data
580 expando = "sizzle" + 1 * new Date(),
581 preferredDoc = window.document,
582 dirruns = 0,
583 done = 0,
584 classCache = createCache(),
585 tokenCache = createCache(),
586 compilerCache = createCache(),
587 sortOrder = function( a, b ) {
588 if ( a === b ) {
589 hasDuplicate = true;
590 }
591 return 0;
592 },
593  
594 // Instance methods
595 hasOwn = ({}).hasOwnProperty,
596 arr = [],
597 pop = arr.pop,
598 push_native = arr.push,
599 push = arr.push,
600 slice = arr.slice,
601 // Use a stripped-down indexOf as it's faster than native
602 // https://jsperf.com/thor-indexof-vs-for/5
603 indexOf = function( list, elem ) {
604 var i = 0,
605 len = list.length;
606 for ( ; i < len; i++ ) {
607 if ( list[i] === elem ) {
608 return i;
609 }
610 }
611 return -1;
612 },
613  
614 booleans = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",
615  
616 // Regular expressions
617  
618 // http://www.w3.org/TR/css3-selectors/#whitespace
619 whitespace = "[\\x20\\t\\r\\n\\f]",
620  
621 // http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier
622 identifier = "(?:\\\\.|[\\w-]|[^\0-\\xa0])+",
623  
624 // Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors
625 attributes = "\\[" + whitespace + "*(" + identifier + ")(?:" + whitespace +
626 // Operator (capture 2)
627 "*([*^$|!~]?=)" + whitespace +
628 // "Attribute values must be CSS identifiers [capture 5] or strings [capture 3 or capture 4]"
629 "*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|(" + identifier + "))|)" + whitespace +
630 "*\\]",
631  
632 pseudos = ":(" + identifier + ")(?:\\((" +
633 // To reduce the number of selectors needing tokenize in the preFilter, prefer arguments:
634 // 1. quoted (capture 3; capture 4 or capture 5)
635 "('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|" +
636 // 2. simple (capture 6)
637 "((?:\\\\.|[^\\\\()[\\]]|" + attributes + ")*)|" +
638 // 3. anything else (capture 2)
639 ".*" +
640 ")\\)|)",
641  
642 // Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter
643 rwhitespace = new RegExp( whitespace + "+", "g" ),
644 rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + whitespace + "+$", "g" ),
645  
646 rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ),
647 rcombinators = new RegExp( "^" + whitespace + "*([>+~]|" + whitespace + ")" + whitespace + "*" ),
648  
649 rattributeQuotes = new RegExp( "=" + whitespace + "*([^\\]'\"]*?)" + whitespace + "*\\]", "g" ),
650  
651 rpseudo = new RegExp( pseudos ),
652 ridentifier = new RegExp( "^" + identifier + "$" ),
653  
654 matchExpr = {
655 "ID": new RegExp( "^#(" + identifier + ")" ),
656 "CLASS": new RegExp( "^\\.(" + identifier + ")" ),
657 "TAG": new RegExp( "^(" + identifier + "|[*])" ),
658 "ATTR": new RegExp( "^" + attributes ),
659 "PSEUDO": new RegExp( "^" + pseudos ),
660 "CHILD": new RegExp( "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + whitespace +
661 "*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + whitespace +
662 "*(\\d+)|))" + whitespace + "*\\)|)", "i" ),
663 "bool": new RegExp( "^(?:" + booleans + ")$", "i" ),
664 // For use in libraries implementing .is()
665 // We use this for POS matching in `select`
666 "needsContext": new RegExp( "^" + whitespace + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" +
667 whitespace + "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" )
668 },
669  
670 rinputs = /^(?:input|select|textarea|button)$/i,
671 rheader = /^h\d$/i,
672  
673 rnative = /^[^{]+\{\s*\[native \w/,
674  
675 // Easily-parseable/retrievable ID or TAG or CLASS selectors
676 rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,
677  
678 rsibling = /[+~]/,
679  
680 // CSS escapes
681 // http://www.w3.org/TR/CSS21/syndata.html#escaped-characters
682 runescape = new RegExp( "\\\\([\\da-f]{1,6}" + whitespace + "?|(" + whitespace + ")|.)", "ig" ),
683 funescape = function( _, escaped, escapedWhitespace ) {
684 var high = "0x" + escaped - 0x10000;
685 // NaN means non-codepoint
686 // Support: Firefox<24
687 // Workaround erroneous numeric interpretation of +"0x"
688 return high !== high || escapedWhitespace ?
689 escaped :
690 high < 0 ?
691 // BMP codepoint
692 String.fromCharCode( high + 0x10000 ) :
693 // Supplemental Plane codepoint (surrogate pair)
694 String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 );
695 },
696  
697 // CSS string/identifier serialization
698 // https://drafts.csswg.org/cssom/#common-serializing-idioms
699 rcssescape = /([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,
700 fcssescape = function( ch, asCodePoint ) {
701 if ( asCodePoint ) {
702  
703 // U+0000 NULL becomes U+FFFD REPLACEMENT CHARACTER
704 if ( ch === "\0" ) {
705 return "\uFFFD";
706 }
707  
708 // Control characters and (dependent upon position) numbers get escaped as code points
709 return ch.slice( 0, -1 ) + "\\" + ch.charCodeAt( ch.length - 1 ).toString( 16 ) + " ";
710 }
711  
712 // Other potentially-special ASCII characters get backslash-escaped
713 return "\\" + ch;
714 },
715  
716 // Used for iframes
717 // See setDocument()
718 // Removing the function wrapper causes a "Permission Denied"
719 // error in IE
720 unloadHandler = function() {
721 setDocument();
722 },
723  
724 disabledAncestor = addCombinator(
725 function( elem ) {
726 return elem.disabled === true && ("form" in elem || "label" in elem);
727 },
728 { dir: "parentNode", next: "legend" }
729 );
730  
731 // Optimize for push.apply( _, NodeList )
732 try {
733 push.apply(
734 (arr = slice.call( preferredDoc.childNodes )),
735 preferredDoc.childNodes
736 );
737 // Support: Android<4.0
738 // Detect silently failing push.apply
739 arr[ preferredDoc.childNodes.length ].nodeType;
740 } catch ( e ) {
741 push = { apply: arr.length ?
742  
743 // Leverage slice if possible
744 function( target, els ) {
745 push_native.apply( target, slice.call(els) );
746 } :
747  
748 // Support: IE<9
749 // Otherwise append directly
750 function( target, els ) {
751 var j = target.length,
752 i = 0;
753 // Can't trust NodeList.length
754 while ( (target[j++] = els[i++]) ) {}
755 target.length = j - 1;
756 }
757 };
758 }
759  
760 function Sizzle( selector, context, results, seed ) {
761 var m, i, elem, nid, match, groups, newSelector,
762 newContext = context && context.ownerDocument,
763  
764 // nodeType defaults to 9, since context defaults to document
765 nodeType = context ? context.nodeType : 9;
766  
767 results = results || [];
768  
769 // Return early from calls with invalid selector or context
770 if ( typeof selector !== "string" || !selector ||
771 nodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) {
772  
773 return results;
774 }
775  
776 // Try to shortcut find operations (as opposed to filters) in HTML documents
777 if ( !seed ) {
778  
779 if ( ( context ? context.ownerDocument || context : preferredDoc ) !== document ) {
780 setDocument( context );
781 }
782 context = context || document;
783  
784 if ( documentIsHTML ) {
785  
786 // If the selector is sufficiently simple, try using a "get*By*" DOM method
787 // (excepting DocumentFragment context, where the methods don't exist)
788 if ( nodeType !== 11 && (match = rquickExpr.exec( selector )) ) {
789  
790 // ID selector
791 if ( (m = match[1]) ) {
792  
793 // Document context
794 if ( nodeType === 9 ) {
795 if ( (elem = context.getElementById( m )) ) {
796  
797 // Support: IE, Opera, Webkit
798 // TODO: identify versions
799 // getElementById can match elements by name instead of ID
800 if ( elem.id === m ) {
801 results.push( elem );
802 return results;
803 }
804 } else {
805 return results;
806 }
807  
808 // Element context
809 } else {
810  
811 // Support: IE, Opera, Webkit
812 // TODO: identify versions
813 // getElementById can match elements by name instead of ID
814 if ( newContext && (elem = newContext.getElementById( m )) &&
815 contains( context, elem ) &&
816 elem.id === m ) {
817  
818 results.push( elem );
819 return results;
820 }
821 }
822  
823 // Type selector
824 } else if ( match[2] ) {
825 push.apply( results, context.getElementsByTagName( selector ) );
826 return results;
827  
828 // Class selector
829 } else if ( (m = match[3]) && support.getElementsByClassName &&
830 context.getElementsByClassName ) {
831  
832 push.apply( results, context.getElementsByClassName( m ) );
833 return results;
834 }
835 }
836  
837 // Take advantage of querySelectorAll
838 if ( support.qsa &&
839 !compilerCache[ selector + " " ] &&
840 (!rbuggyQSA || !rbuggyQSA.test( selector )) ) {
841  
842 if ( nodeType !== 1 ) {
843 newContext = context;
844 newSelector = selector;
845  
846 // qSA looks outside Element context, which is not what we want
847 // Thanks to Andrew Dupont for this workaround technique
848 // Support: IE <=8
849 // Exclude object elements
850 } else if ( context.nodeName.toLowerCase() !== "object" ) {
851  
852 // Capture the context ID, setting it first if necessary
853 if ( (nid = context.getAttribute( "id" )) ) {
854 nid = nid.replace( rcssescape, fcssescape );
855 } else {
856 context.setAttribute( "id", (nid = expando) );
857 }
858  
859 // Prefix every selector in the list
860 groups = tokenize( selector );
861 i = groups.length;
862 while ( i-- ) {
863 groups[i] = "#" + nid + " " + toSelector( groups[i] );
864 }
865 newSelector = groups.join( "," );
866  
867 // Expand context for sibling selectors
868 newContext = rsibling.test( selector ) && testContext( context.parentNode ) ||
869 context;
870 }
871  
872 if ( newSelector ) {
873 try {
874 push.apply( results,
875 newContext.querySelectorAll( newSelector )
876 );
877 return results;
878 } catch ( qsaError ) {
879 } finally {
880 if ( nid === expando ) {
881 context.removeAttribute( "id" );
882 }
883 }
884 }
885 }
886 }
887 }
888  
889 // All others
890 return select( selector.replace( rtrim, "$1" ), context, results, seed );
891 }
892  
893 /**
894 * Create key-value caches of limited size
895 * @returns {function(string, object)} Returns the Object data after storing it on itself with
896 * property name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength)
897 * deleting the oldest entry
898 */
899 function createCache() {
900 var keys = [];
901  
902 function cache( key, value ) {
903 // Use (key + " ") to avoid collision with native prototype properties (see Issue #157)
904 if ( keys.push( key + " " ) > Expr.cacheLength ) {
905 // Only keep the most recent entries
906 delete cache[ keys.shift() ];
907 }
908 return (cache[ key + " " ] = value);
909 }
910 return cache;
911 }
912  
913 /**
914 * Mark a function for special use by Sizzle
915 * @param {Function} fn The function to mark
916 */
917 function markFunction( fn ) {
918 fn[ expando ] = true;
919 return fn;
920 }
921  
922 /**
923 * Support testing using an element
924 * @param {Function} fn Passed the created element and returns a boolean result
925 */
926 function assert( fn ) {
927 var el = document.createElement("fieldset");
928  
929 try {
930 return !!fn( el );
931 } catch (e) {
932 return false;
933 } finally {
934 // Remove from its parent by default
935 if ( el.parentNode ) {
936 el.parentNode.removeChild( el );
937 }
938 // release memory in IE
939 el = null;
940 }
941 }
942  
943 /**
944 * Adds the same handler for all of the specified attrs
945 * @param {String} attrs Pipe-separated list of attributes
946 * @param {Function} handler The method that will be applied
947 */
948 function addHandle( attrs, handler ) {
949 var arr = attrs.split("|"),
950 i = arr.length;
951  
952 while ( i-- ) {
953 Expr.attrHandle[ arr[i] ] = handler;
954 }
955 }
956  
957 /**
958 * Checks document order of two siblings
959 * @param {Element} a
960 * @param {Element} b
961 * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b
962 */
963 function siblingCheck( a, b ) {
964 var cur = b && a,
965 diff = cur && a.nodeType === 1 && b.nodeType === 1 &&
966 a.sourceIndex - b.sourceIndex;
967  
968 // Use IE sourceIndex if available on both nodes
969 if ( diff ) {
970 return diff;
971 }
972  
973 // Check if b follows a
974 if ( cur ) {
975 while ( (cur = cur.nextSibling) ) {
976 if ( cur === b ) {
977 return -1;
978 }
979 }
980 }
981  
982 return a ? 1 : -1;
983 }
984  
985 /**
986 * Returns a function to use in pseudos for input types
987 * @param {String} type
988 */
989 function createInputPseudo( type ) {
990 return function( elem ) {
991 var name = elem.nodeName.toLowerCase();
992 return name === "input" && elem.type === type;
993 };
994 }
995  
996 /**
997 * Returns a function to use in pseudos for buttons
998 * @param {String} type
999 */
1000 function createButtonPseudo( type ) {
1001 return function( elem ) {
1002 var name = elem.nodeName.toLowerCase();
1003 return (name === "input" || name === "button") && elem.type === type;
1004 };
1005 }
1006  
1007 /**
1008 * Returns a function to use in pseudos for :enabled/:disabled
1009 * @param {Boolean} disabled true for :disabled; false for :enabled
1010 */
1011 function createDisabledPseudo( disabled ) {
1012  
1013 // Known :disabled false positives: fieldset[disabled] > legend:nth-of-type(n+2) :can-disable
1014 return function( elem ) {
1015  
1016 // Only certain elements can match :enabled or :disabled
1017 // https://html.spec.whatwg.org/multipage/scripting.html#selector-enabled
1018 // https://html.spec.whatwg.org/multipage/scripting.html#selector-disabled
1019 if ( "form" in elem ) {
1020  
1021 // Check for inherited disabledness on relevant non-disabled elements:
1022 // * listed form-associated elements in a disabled fieldset
1023 // https://html.spec.whatwg.org/multipage/forms.html#category-listed
1024 // https://html.spec.whatwg.org/multipage/forms.html#concept-fe-disabled
1025 // * option elements in a disabled optgroup
1026 // https://html.spec.whatwg.org/multipage/forms.html#concept-option-disabled
1027 // All such elements have a "form" property.
1028 if ( elem.parentNode && elem.disabled === false ) {
1029  
1030 // Option elements defer to a parent optgroup if present
1031 if ( "label" in elem ) {
1032 if ( "label" in elem.parentNode ) {
1033 return elem.parentNode.disabled === disabled;
1034 } else {
1035 return elem.disabled === disabled;
1036 }
1037 }
1038  
1039 // Support: IE 6 - 11
1040 // Use the isDisabled shortcut property to check for disabled fieldset ancestors
1041 return elem.isDisabled === disabled ||
1042  
1043 // Where there is no isDisabled, check manually
1044 /* jshint -W018 */
1045 elem.isDisabled !== !disabled &&
1046 disabledAncestor( elem ) === disabled;
1047 }
1048  
1049 return elem.disabled === disabled;
1050  
1051 // Try to winnow out elements that can't be disabled before trusting the disabled property.
1052 // Some victims get caught in our net (label, legend, menu, track), but it shouldn't
1053 // even exist on them, let alone have a boolean value.
1054 } else if ( "label" in elem ) {
1055 return elem.disabled === disabled;
1056 }
1057  
1058 // Remaining elements are neither :enabled nor :disabled
1059 return false;
1060 };
1061 }
1062  
1063 /**
1064 * Returns a function to use in pseudos for positionals
1065 * @param {Function} fn
1066 */
1067 function createPositionalPseudo( fn ) {
1068 return markFunction(function( argument ) {
1069 argument = +argument;
1070 return markFunction(function( seed, matches ) {
1071 var j,
1072 matchIndexes = fn( [], seed.length, argument ),
1073 i = matchIndexes.length;
1074  
1075 // Match elements found at the specified indexes
1076 while ( i-- ) {
1077 if ( seed[ (j = matchIndexes[i]) ] ) {
1078 seed[j] = !(matches[j] = seed[j]);
1079 }
1080 }
1081 });
1082 });
1083 }
1084  
1085 /**
1086 * Checks a node for validity as a Sizzle context
1087 * @param {Element|Object=} context
1088 * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value
1089 */
1090 function testContext( context ) {
1091 return context && typeof context.getElementsByTagName !== "undefined" && context;
1092 }
1093  
1094 // Expose support vars for convenience
1095 support = Sizzle.support = {};
1096  
1097 /**
1098 * Detects XML nodes
1099 * @param {Element|Object} elem An element or a document
1100 * @returns {Boolean} True iff elem is a non-HTML XML node
1101 */
1102 isXML = Sizzle.isXML = function( elem ) {
1103 // documentElement is verified for cases where it doesn't yet exist
1104 // (such as loading iframes in IE - #4833)
1105 var documentElement = elem && (elem.ownerDocument || elem).documentElement;
1106 return documentElement ? documentElement.nodeName !== "HTML" : false;
1107 };
1108  
1109 /**
1110 * Sets document-related variables once based on the current document
1111 * @param {Element|Object} [doc] An element or document object to use to set the document
1112 * @returns {Object} Returns the current document
1113 */
1114 setDocument = Sizzle.setDocument = function( node ) {
1115 var hasCompare, subWindow,
1116 doc = node ? node.ownerDocument || node : preferredDoc;
1117  
1118 // Return early if doc is invalid or already selected
1119 if ( doc === document || doc.nodeType !== 9 || !doc.documentElement ) {
1120 return document;
1121 }
1122  
1123 // Update global variables
1124 document = doc;
1125 docElem = document.documentElement;
1126 documentIsHTML = !isXML( document );
1127  
1128 // Support: IE 9-11, Edge
1129 // Accessing iframe documents after unload throws "permission denied" errors (jQuery #13936)
1130 if ( preferredDoc !== document &&
1131 (subWindow = document.defaultView) && subWindow.top !== subWindow ) {
1132  
1133 // Support: IE 11, Edge
1134 if ( subWindow.addEventListener ) {
1135 subWindow.addEventListener( "unload", unloadHandler, false );
1136  
1137 // Support: IE 9 - 10 only
1138 } else if ( subWindow.attachEvent ) {
1139 subWindow.attachEvent( "onunload", unloadHandler );
1140 }
1141 }
1142  
1143 /* Attributes
1144 ---------------------------------------------------------------------- */
1145  
1146 // Support: IE<8
1147 // Verify that getAttribute really returns attributes and not properties
1148 // (excepting IE8 booleans)
1149 support.attributes = assert(function( el ) {
1150 el.className = "i";
1151 return !el.getAttribute("className");
1152 });
1153  
1154 /* getElement(s)By*
1155 ---------------------------------------------------------------------- */
1156  
1157 // Check if getElementsByTagName("*") returns only elements
1158 support.getElementsByTagName = assert(function( el ) {
1159 el.appendChild( document.createComment("") );
1160 return !el.getElementsByTagName("*").length;
1161 });
1162  
1163 // Support: IE<9
1164 support.getElementsByClassName = rnative.test( document.getElementsByClassName );
1165  
1166 // Support: IE<10
1167 // Check if getElementById returns elements by name
1168 // The broken getElementById methods don't pick up programmatically-set names,
1169 // so use a roundabout getElementsByName test
1170 support.getById = assert(function( el ) {
1171 docElem.appendChild( el ).id = expando;
1172 return !document.getElementsByName || !document.getElementsByName( expando ).length;
1173 });
1174  
1175 // ID filter and find
1176 if ( support.getById ) {
1177 Expr.filter["ID"] = function( id ) {
1178 var attrId = id.replace( runescape, funescape );
1179 return function( elem ) {
1180 return elem.getAttribute("id") === attrId;
1181 };
1182 };
1183 Expr.find["ID"] = function( id, context ) {
1184 if ( typeof context.getElementById !== "undefined" && documentIsHTML ) {
1185 var elem = context.getElementById( id );
1186 return elem ? [ elem ] : [];
1187 }
1188 };
1189 } else {
1190 Expr.filter["ID"] = function( id ) {
1191 var attrId = id.replace( runescape, funescape );
1192 return function( elem ) {
1193 var node = typeof elem.getAttributeNode !== "undefined" &&
1194 elem.getAttributeNode("id");
1195 return node && node.value === attrId;
1196 };
1197 };
1198  
1199 // Support: IE 6 - 7 only
1200 // getElementById is not reliable as a find shortcut
1201 Expr.find["ID"] = function( id, context ) {
1202 if ( typeof context.getElementById !== "undefined" && documentIsHTML ) {
1203 var node, i, elems,
1204 elem = context.getElementById( id );
1205  
1206 if ( elem ) {
1207  
1208 // Verify the id attribute
1209 node = elem.getAttributeNode("id");
1210 if ( node && node.value === id ) {
1211 return [ elem ];
1212 }
1213  
1214 // Fall back on getElementsByName
1215 elems = context.getElementsByName( id );
1216 i = 0;
1217 while ( (elem = elems[i++]) ) {
1218 node = elem.getAttributeNode("id");
1219 if ( node && node.value === id ) {
1220 return [ elem ];
1221 }
1222 }
1223 }
1224  
1225 return [];
1226 }
1227 };
1228 }
1229  
1230 // Tag
1231 Expr.find["TAG"] = support.getElementsByTagName ?
1232 function( tag, context ) {
1233 if ( typeof context.getElementsByTagName !== "undefined" ) {
1234 return context.getElementsByTagName( tag );
1235  
1236 // DocumentFragment nodes don't have gEBTN
1237 } else if ( support.qsa ) {
1238 return context.querySelectorAll( tag );
1239 }
1240 } :
1241  
1242 function( tag, context ) {
1243 var elem,
1244 tmp = [],
1245 i = 0,
1246 // By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too
1247 results = context.getElementsByTagName( tag );
1248  
1249 // Filter out possible comments
1250 if ( tag === "*" ) {
1251 while ( (elem = results[i++]) ) {
1252 if ( elem.nodeType === 1 ) {
1253 tmp.push( elem );
1254 }
1255 }
1256  
1257 return tmp;
1258 }
1259 return results;
1260 };
1261  
1262 // Class
1263 Expr.find["CLASS"] = support.getElementsByClassName && function( className, context ) {
1264 if ( typeof context.getElementsByClassName !== "undefined" && documentIsHTML ) {
1265 return context.getElementsByClassName( className );
1266 }
1267 };
1268  
1269 /* QSA/matchesSelector
1270 ---------------------------------------------------------------------- */
1271  
1272 // QSA and matchesSelector support
1273  
1274 // matchesSelector(:active) reports false when true (IE9/Opera 11.5)
1275 rbuggyMatches = [];
1276  
1277 // qSa(:focus) reports false when true (Chrome 21)
1278 // We allow this because of a bug in IE8/9 that throws an error
1279 // whenever `document.activeElement` is accessed on an iframe
1280 // So, we allow :focus to pass through QSA all the time to avoid the IE error
1281 // See https://bugs.jquery.com/ticket/13378
1282 rbuggyQSA = [];
1283  
1284 if ( (support.qsa = rnative.test( document.querySelectorAll )) ) {
1285 // Build QSA regex
1286 // Regex strategy adopted from Diego Perini
1287 assert(function( el ) {
1288 // Select is set to empty string on purpose
1289 // This is to test IE's treatment of not explicitly
1290 // setting a boolean content attribute,
1291 // since its presence should be enough
1292 // https://bugs.jquery.com/ticket/12359
1293 docElem.appendChild( el ).innerHTML = "<a id='" + expando + "'></a>" +
1294 "<select id='" + expando + "-\r\\' msallowcapture=''>" +
1295 "<option selected=''></option></select>";
1296  
1297 // Support: IE8, Opera 11-12.16
1298 // Nothing should be selected when empty strings follow ^= or $= or *=
1299 // The test attribute must be unknown in Opera but "safe" for WinRT
1300 // https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section
1301 if ( el.querySelectorAll("[msallowcapture^='']").length ) {
1302 rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:''|\"\")" );
1303 }
1304  
1305 // Support: IE8
1306 // Boolean attributes and "value" are not treated correctly
1307 if ( !el.querySelectorAll("[selected]").length ) {
1308 rbuggyQSA.push( "\\[" + whitespace + "*(?:value|" + booleans + ")" );
1309 }
1310  
1311 // Support: Chrome<29, Android<4.4, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.8+
1312 if ( !el.querySelectorAll( "[id~=" + expando + "-]" ).length ) {
1313 rbuggyQSA.push("~=");
1314 }
1315  
1316 // Webkit/Opera - :checked should return selected option elements
1317 // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked
1318 // IE8 throws error here and will not see later tests
1319 if ( !el.querySelectorAll(":checked").length ) {
1320 rbuggyQSA.push(":checked");
1321 }
1322  
1323 // Support: Safari 8+, iOS 8+
1324 // https://bugs.webkit.org/show_bug.cgi?id=136851
1325 // In-page `selector#id sibling-combinator selector` fails
1326 if ( !el.querySelectorAll( "a#" + expando + "+*" ).length ) {
1327 rbuggyQSA.push(".#.+[+~]");
1328 }
1329 });
1330  
1331 assert(function( el ) {
1332 el.innerHTML = "<a href='' disabled='disabled'></a>" +
1333 "<select disabled='disabled'><option/></select>";
1334  
1335 // Support: Windows 8 Native Apps
1336 // The type and name attributes are restricted during .innerHTML assignment
1337 var input = document.createElement("input");
1338 input.setAttribute( "type", "hidden" );
1339 el.appendChild( input ).setAttribute( "name", "D" );
1340  
1341 // Support: IE8
1342 // Enforce case-sensitivity of name attribute
1343 if ( el.querySelectorAll("[name=d]").length ) {
1344 rbuggyQSA.push( "name" + whitespace + "*[*^$|!~]?=" );
1345 }
1346  
1347 // FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled)
1348 // IE8 throws error here and will not see later tests
1349 if ( el.querySelectorAll(":enabled").length !== 2 ) {
1350 rbuggyQSA.push( ":enabled", ":disabled" );
1351 }
1352  
1353 // Support: IE9-11+
1354 // IE's :disabled selector does not pick up the children of disabled fieldsets
1355 docElem.appendChild( el ).disabled = true;
1356 if ( el.querySelectorAll(":disabled").length !== 2 ) {
1357 rbuggyQSA.push( ":enabled", ":disabled" );
1358 }
1359  
1360 // Opera 10-11 does not throw on post-comma invalid pseudos
1361 el.querySelectorAll("*,:x");
1362 rbuggyQSA.push(",.*:");
1363 });
1364 }
1365  
1366 if ( (support.matchesSelector = rnative.test( (matches = docElem.matches ||
1367 docElem.webkitMatchesSelector ||
1368 docElem.mozMatchesSelector ||
1369 docElem.oMatchesSelector ||
1370 docElem.msMatchesSelector) )) ) {
1371  
1372 assert(function( el ) {
1373 // Check to see if it's possible to do matchesSelector
1374 // on a disconnected node (IE 9)
1375 support.disconnectedMatch = matches.call( el, "*" );
1376  
1377 // This should fail with an exception
1378 // Gecko does not error, returns false instead
1379 matches.call( el, "[s!='']:x" );
1380 rbuggyMatches.push( "!=", pseudos );
1381 });
1382 }
1383  
1384 rbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join("|") );
1385 rbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join("|") );
1386  
1387 /* Contains
1388 ---------------------------------------------------------------------- */
1389 hasCompare = rnative.test( docElem.compareDocumentPosition );
1390  
1391 // Element contains another
1392 // Purposefully self-exclusive
1393 // As in, an element does not contain itself
1394 contains = hasCompare || rnative.test( docElem.contains ) ?
1395 function( a, b ) {
1396 var adown = a.nodeType === 9 ? a.documentElement : a,
1397 bup = b && b.parentNode;
1398 return a === bup || !!( bup && bup.nodeType === 1 && (
1399 adown.contains ?
1400 adown.contains( bup ) :
1401 a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16
1402 ));
1403 } :
1404 function( a, b ) {
1405 if ( b ) {
1406 while ( (b = b.parentNode) ) {
1407 if ( b === a ) {
1408 return true;
1409 }
1410 }
1411 }
1412 return false;
1413 };
1414  
1415 /* Sorting
1416 ---------------------------------------------------------------------- */
1417  
1418 // Document order sorting
1419 sortOrder = hasCompare ?
1420 function( a, b ) {
1421  
1422 // Flag for duplicate removal
1423 if ( a === b ) {
1424 hasDuplicate = true;
1425 return 0;
1426 }
1427  
1428 // Sort on method existence if only one input has compareDocumentPosition
1429 var compare = !a.compareDocumentPosition - !b.compareDocumentPosition;
1430 if ( compare ) {
1431 return compare;
1432 }
1433  
1434 // Calculate position if both inputs belong to the same document
1435 compare = ( a.ownerDocument || a ) === ( b.ownerDocument || b ) ?
1436 a.compareDocumentPosition( b ) :
1437  
1438 // Otherwise we know they are disconnected
1439 1;
1440  
1441 // Disconnected nodes
1442 if ( compare & 1 ||
1443 (!support.sortDetached && b.compareDocumentPosition( a ) === compare) ) {
1444  
1445 // Choose the first element that is related to our preferred document
1446 if ( a === document || a.ownerDocument === preferredDoc && contains(preferredDoc, a) ) {
1447 return -1;
1448 }
1449 if ( b === document || b.ownerDocument === preferredDoc && contains(preferredDoc, b) ) {
1450 return 1;
1451 }
1452  
1453 // Maintain original order
1454 return sortInput ?
1455 ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :
1456 0;
1457 }
1458  
1459 return compare & 4 ? -1 : 1;
1460 } :
1461 function( a, b ) {
1462 // Exit early if the nodes are identical
1463 if ( a === b ) {
1464 hasDuplicate = true;
1465 return 0;
1466 }
1467  
1468 var cur,
1469 i = 0,
1470 aup = a.parentNode,
1471 bup = b.parentNode,
1472 ap = [ a ],
1473 bp = [ b ];
1474  
1475 // Parentless nodes are either documents or disconnected
1476 if ( !aup || !bup ) {
1477 return a === document ? -1 :
1478 b === document ? 1 :
1479 aup ? -1 :
1480 bup ? 1 :
1481 sortInput ?
1482 ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :
1483 0;
1484  
1485 // If the nodes are siblings, we can do a quick check
1486 } else if ( aup === bup ) {
1487 return siblingCheck( a, b );
1488 }
1489  
1490 // Otherwise we need full lists of their ancestors for comparison
1491 cur = a;
1492 while ( (cur = cur.parentNode) ) {
1493 ap.unshift( cur );
1494 }
1495 cur = b;
1496 while ( (cur = cur.parentNode) ) {
1497 bp.unshift( cur );
1498 }
1499  
1500 // Walk down the tree looking for a discrepancy
1501 while ( ap[i] === bp[i] ) {
1502 i++;
1503 }
1504  
1505 return i ?
1506 // Do a sibling check if the nodes have a common ancestor
1507 siblingCheck( ap[i], bp[i] ) :
1508  
1509 // Otherwise nodes in our document sort first
1510 ap[i] === preferredDoc ? -1 :
1511 bp[i] === preferredDoc ? 1 :
1512 0;
1513 };
1514  
1515 return document;
1516 };
1517  
1518 Sizzle.matches = function( expr, elements ) {
1519 return Sizzle( expr, null, null, elements );
1520 };
1521  
1522 Sizzle.matchesSelector = function( elem, expr ) {
1523 // Set document vars if needed
1524 if ( ( elem.ownerDocument || elem ) !== document ) {
1525 setDocument( elem );
1526 }
1527  
1528 // Make sure that attribute selectors are quoted
1529 expr = expr.replace( rattributeQuotes, "='$1']" );
1530  
1531 if ( support.matchesSelector && documentIsHTML &&
1532 !compilerCache[ expr + " " ] &&
1533 ( !rbuggyMatches || !rbuggyMatches.test( expr ) ) &&
1534 ( !rbuggyQSA || !rbuggyQSA.test( expr ) ) ) {
1535  
1536 try {
1537 var ret = matches.call( elem, expr );
1538  
1539 // IE 9's matchesSelector returns false on disconnected nodes
1540 if ( ret || support.disconnectedMatch ||
1541 // As well, disconnected nodes are said to be in a document
1542 // fragment in IE 9
1543 elem.document && elem.document.nodeType !== 11 ) {
1544 return ret;
1545 }
1546 } catch (e) {}
1547 }
1548  
1549 return Sizzle( expr, document, null, [ elem ] ).length > 0;
1550 };
1551  
1552 Sizzle.contains = function( context, elem ) {
1553 // Set document vars if needed
1554 if ( ( context.ownerDocument || context ) !== document ) {
1555 setDocument( context );
1556 }
1557 return contains( context, elem );
1558 };
1559  
1560 Sizzle.attr = function( elem, name ) {
1561 // Set document vars if needed
1562 if ( ( elem.ownerDocument || elem ) !== document ) {
1563 setDocument( elem );
1564 }
1565  
1566 var fn = Expr.attrHandle[ name.toLowerCase() ],
1567 // Don't get fooled by Object.prototype properties (jQuery #13807)
1568 val = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ?
1569 fn( elem, name, !documentIsHTML ) :
1570 undefined;
1571  
1572 return val !== undefined ?
1573 val :
1574 support.attributes || !documentIsHTML ?
1575 elem.getAttribute( name ) :
1576 (val = elem.getAttributeNode(name)) && val.specified ?
1577 val.value :
1578 null;
1579 };
1580  
1581 Sizzle.escape = function( sel ) {
1582 return (sel + "").replace( rcssescape, fcssescape );
1583 };
1584  
1585 Sizzle.error = function( msg ) {
1586 throw new Error( "Syntax error, unrecognized expression: " + msg );
1587 };
1588  
1589 /**
1590 * Document sorting and removing duplicates
1591 * @param {ArrayLike} results
1592 */
1593 Sizzle.uniqueSort = function( results ) {
1594 var elem,
1595 duplicates = [],
1596 j = 0,
1597 i = 0;
1598  
1599 // Unless we *know* we can detect duplicates, assume their presence
1600 hasDuplicate = !support.detectDuplicates;
1601 sortInput = !support.sortStable && results.slice( 0 );
1602 results.sort( sortOrder );
1603  
1604 if ( hasDuplicate ) {
1605 while ( (elem = results[i++]) ) {
1606 if ( elem === results[ i ] ) {
1607 j = duplicates.push( i );
1608 }
1609 }
1610 while ( j-- ) {
1611 results.splice( duplicates[ j ], 1 );
1612 }
1613 }
1614  
1615 // Clear input after sorting to release objects
1616 // See https://github.com/jquery/sizzle/pull/225
1617 sortInput = null;
1618  
1619 return results;
1620 };
1621  
1622 /**
1623 * Utility function for retrieving the text value of an array of DOM nodes
1624 * @param {Array|Element} elem
1625 */
1626 getText = Sizzle.getText = function( elem ) {
1627 var node,
1628 ret = "",
1629 i = 0,
1630 nodeType = elem.nodeType;
1631  
1632 if ( !nodeType ) {
1633 // If no nodeType, this is expected to be an array
1634 while ( (node = elem[i++]) ) {
1635 // Do not traverse comment nodes
1636 ret += getText( node );
1637 }
1638 } else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) {
1639 // Use textContent for elements
1640 // innerText usage removed for consistency of new lines (jQuery #11153)
1641 if ( typeof elem.textContent === "string" ) {
1642 return elem.textContent;
1643 } else {
1644 // Traverse its children
1645 for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {
1646 ret += getText( elem );
1647 }
1648 }
1649 } else if ( nodeType === 3 || nodeType === 4 ) {
1650 return elem.nodeValue;
1651 }
1652 // Do not include comment or processing instruction nodes
1653  
1654 return ret;
1655 };
1656  
1657 Expr = Sizzle.selectors = {
1658  
1659 // Can be adjusted by the user
1660 cacheLength: 50,
1661  
1662 createPseudo: markFunction,
1663  
1664 match: matchExpr,
1665  
1666 attrHandle: {},
1667  
1668 find: {},
1669  
1670 relative: {
1671 ">": { dir: "parentNode", first: true },
1672 " ": { dir: "parentNode" },
1673 "+": { dir: "previousSibling", first: true },
1674 "~": { dir: "previousSibling" }
1675 },
1676  
1677 preFilter: {
1678 "ATTR": function( match ) {
1679 match[1] = match[1].replace( runescape, funescape );
1680  
1681 // Move the given value to match[3] whether quoted or unquoted
1682 match[3] = ( match[3] || match[4] || match[5] || "" ).replace( runescape, funescape );
1683  
1684 if ( match[2] === "~=" ) {
1685 match[3] = " " + match[3] + " ";
1686 }
1687  
1688 return match.slice( 0, 4 );
1689 },
1690  
1691 "CHILD": function( match ) {
1692 /* matches from matchExpr["CHILD"]
1693 1 type (only|nth|...)
1694 2 what (child|of-type)
1695 3 argument (even|odd|\d*|\d*n([+-]\d+)?|...)
1696 4 xn-component of xn+y argument ([+-]?\d*n|)
1697 5 sign of xn-component
1698 6 x of xn-component
1699 7 sign of y-component
1700 8 y of y-component
1701 */
1702 match[1] = match[1].toLowerCase();
1703  
1704 if ( match[1].slice( 0, 3 ) === "nth" ) {
1705 // nth-* requires argument
1706 if ( !match[3] ) {
1707 Sizzle.error( match[0] );
1708 }
1709  
1710 // numeric x and y parameters for Expr.filter.CHILD
1711 // remember that false/true cast respectively to 0/1
1712 match[4] = +( match[4] ? match[5] + (match[6] || 1) : 2 * ( match[3] === "even" || match[3] === "odd" ) );
1713 match[5] = +( ( match[7] + match[8] ) || match[3] === "odd" );
1714  
1715 // other types prohibit arguments
1716 } else if ( match[3] ) {
1717 Sizzle.error( match[0] );
1718 }
1719  
1720 return match;
1721 },
1722  
1723 "PSEUDO": function( match ) {
1724 var excess,
1725 unquoted = !match[6] && match[2];
1726  
1727 if ( matchExpr["CHILD"].test( match[0] ) ) {
1728 return null;
1729 }
1730  
1731 // Accept quoted arguments as-is
1732 if ( match[3] ) {
1733 match[2] = match[4] || match[5] || "";
1734  
1735 // Strip excess characters from unquoted arguments
1736 } else if ( unquoted && rpseudo.test( unquoted ) &&
1737 // Get excess from tokenize (recursively)
1738 (excess = tokenize( unquoted, true )) &&
1739 // advance to the next closing parenthesis
1740 (excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length) ) {
1741  
1742 // excess is a negative index
1743 match[0] = match[0].slice( 0, excess );
1744 match[2] = unquoted.slice( 0, excess );
1745 }
1746  
1747 // Return only captures needed by the pseudo filter method (type and argument)
1748 return match.slice( 0, 3 );
1749 }
1750 },
1751  
1752 filter: {
1753  
1754 "TAG": function( nodeNameSelector ) {
1755 var nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase();
1756 return nodeNameSelector === "*" ?
1757 function() { return true; } :
1758 function( elem ) {
1759 return elem.nodeName && elem.nodeName.toLowerCase() === nodeName;
1760 };
1761 },
1762  
1763 "CLASS": function( className ) {
1764 var pattern = classCache[ className + " " ];
1765  
1766 return pattern ||
1767 (pattern = new RegExp( "(^|" + whitespace + ")" + className + "(" + whitespace + "|$)" )) &&
1768 classCache( className, function( elem ) {
1769 return pattern.test( typeof elem.className === "string" && elem.className || typeof elem.getAttribute !== "undefined" && elem.getAttribute("class") || "" );
1770 });
1771 },
1772  
1773 "ATTR": function( name, operator, check ) {
1774 return function( elem ) {
1775 var result = Sizzle.attr( elem, name );
1776  
1777 if ( result == null ) {
1778 return operator === "!=";
1779 }
1780 if ( !operator ) {
1781 return true;
1782 }
1783  
1784 result += "";
1785  
1786 return operator === "=" ? result === check :
1787 operator === "!=" ? result !== check :
1788 operator === "^=" ? check && result.indexOf( check ) === 0 :
1789 operator === "*=" ? check && result.indexOf( check ) > -1 :
1790 operator === "$=" ? check && result.slice( -check.length ) === check :
1791 operator === "~=" ? ( " " + result.replace( rwhitespace, " " ) + " " ).indexOf( check ) > -1 :
1792 operator === "|=" ? result === check || result.slice( 0, check.length + 1 ) === check + "-" :
1793 false;
1794 };
1795 },
1796  
1797 "CHILD": function( type, what, argument, first, last ) {
1798 var simple = type.slice( 0, 3 ) !== "nth",
1799 forward = type.slice( -4 ) !== "last",
1800 ofType = what === "of-type";
1801  
1802 return first === 1 && last === 0 ?
1803  
1804 // Shortcut for :nth-*(n)
1805 function( elem ) {
1806 return !!elem.parentNode;
1807 } :
1808  
1809 function( elem, context, xml ) {
1810 var cache, uniqueCache, outerCache, node, nodeIndex, start,
1811 dir = simple !== forward ? "nextSibling" : "previousSibling",
1812 parent = elem.parentNode,
1813 name = ofType && elem.nodeName.toLowerCase(),
1814 useCache = !xml && !ofType,
1815 diff = false;
1816  
1817 if ( parent ) {
1818  
1819 // :(first|last|only)-(child|of-type)
1820 if ( simple ) {
1821 while ( dir ) {
1822 node = elem;
1823 while ( (node = node[ dir ]) ) {
1824 if ( ofType ?
1825 node.nodeName.toLowerCase() === name :
1826 node.nodeType === 1 ) {
1827  
1828 return false;
1829 }
1830 }
1831 // Reverse direction for :only-* (if we haven't yet done so)
1832 start = dir = type === "only" && !start && "nextSibling";
1833 }
1834 return true;
1835 }
1836  
1837 start = [ forward ? parent.firstChild : parent.lastChild ];
1838  
1839 // non-xml :nth-child(...) stores cache data on `parent`
1840 if ( forward && useCache ) {
1841  
1842 // Seek `elem` from a previously-cached index
1843  
1844 // ...in a gzip-friendly way
1845 node = parent;
1846 outerCache = node[ expando ] || (node[ expando ] = {});
1847  
1848 // Support: IE <9 only
1849 // Defend against cloned attroperties (jQuery gh-1709)
1850 uniqueCache = outerCache[ node.uniqueID ] ||
1851 (outerCache[ node.uniqueID ] = {});
1852  
1853 cache = uniqueCache[ type ] || [];
1854 nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ];
1855 diff = nodeIndex && cache[ 2 ];
1856 node = nodeIndex && parent.childNodes[ nodeIndex ];
1857  
1858 while ( (node = ++nodeIndex && node && node[ dir ] ||
1859  
1860 // Fallback to seeking `elem` from the start
1861 (diff = nodeIndex = 0) || start.pop()) ) {
1862  
1863 // When found, cache indexes on `parent` and break
1864 if ( node.nodeType === 1 && ++diff && node === elem ) {
1865 uniqueCache[ type ] = [ dirruns, nodeIndex, diff ];
1866 break;
1867 }
1868 }
1869  
1870 } else {
1871 // Use previously-cached element index if available
1872 if ( useCache ) {
1873 // ...in a gzip-friendly way
1874 node = elem;
1875 outerCache = node[ expando ] || (node[ expando ] = {});
1876  
1877 // Support: IE <9 only
1878 // Defend against cloned attroperties (jQuery gh-1709)
1879 uniqueCache = outerCache[ node.uniqueID ] ||
1880 (outerCache[ node.uniqueID ] = {});
1881  
1882 cache = uniqueCache[ type ] || [];
1883 nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ];
1884 diff = nodeIndex;
1885 }
1886  
1887 // xml :nth-child(...)
1888 // or :nth-last-child(...) or :nth(-last)?-of-type(...)
1889 if ( diff === false ) {
1890 // Use the same loop as above to seek `elem` from the start
1891 while ( (node = ++nodeIndex && node && node[ dir ] ||
1892 (diff = nodeIndex = 0) || start.pop()) ) {
1893  
1894 if ( ( ofType ?
1895 node.nodeName.toLowerCase() === name :
1896 node.nodeType === 1 ) &&
1897 ++diff ) {
1898  
1899 // Cache the index of each encountered element
1900 if ( useCache ) {
1901 outerCache = node[ expando ] || (node[ expando ] = {});
1902  
1903 // Support: IE <9 only
1904 // Defend against cloned attroperties (jQuery gh-1709)
1905 uniqueCache = outerCache[ node.uniqueID ] ||
1906 (outerCache[ node.uniqueID ] = {});
1907  
1908 uniqueCache[ type ] = [ dirruns, diff ];
1909 }
1910  
1911 if ( node === elem ) {
1912 break;
1913 }
1914 }
1915 }
1916 }
1917 }
1918  
1919 // Incorporate the offset, then check against cycle size
1920 diff -= last;
1921 return diff === first || ( diff % first === 0 && diff / first >= 0 );
1922 }
1923 };
1924 },
1925  
1926 "PSEUDO": function( pseudo, argument ) {
1927 // pseudo-class names are case-insensitive
1928 // http://www.w3.org/TR/selectors/#pseudo-classes
1929 // Prioritize by case sensitivity in case custom pseudos are added with uppercase letters
1930 // Remember that setFilters inherits from pseudos
1931 var args,
1932 fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] ||
1933 Sizzle.error( "unsupported pseudo: " + pseudo );
1934  
1935 // The user may use createPseudo to indicate that
1936 // arguments are needed to create the filter function
1937 // just as Sizzle does
1938 if ( fn[ expando ] ) {
1939 return fn( argument );
1940 }
1941  
1942 // But maintain support for old signatures
1943 if ( fn.length > 1 ) {
1944 args = [ pseudo, pseudo, "", argument ];
1945 return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ?
1946 markFunction(function( seed, matches ) {
1947 var idx,
1948 matched = fn( seed, argument ),
1949 i = matched.length;
1950 while ( i-- ) {
1951 idx = indexOf( seed, matched[i] );
1952 seed[ idx ] = !( matches[ idx ] = matched[i] );
1953 }
1954 }) :
1955 function( elem ) {
1956 return fn( elem, 0, args );
1957 };
1958 }
1959  
1960 return fn;
1961 }
1962 },
1963  
1964 pseudos: {
1965 // Potentially complex pseudos
1966 "not": markFunction(function( selector ) {
1967 // Trim the selector passed to compile
1968 // to avoid treating leading and trailing
1969 // spaces as combinators
1970 var input = [],
1971 results = [],
1972 matcher = compile( selector.replace( rtrim, "$1" ) );
1973  
1974 return matcher[ expando ] ?
1975 markFunction(function( seed, matches, context, xml ) {
1976 var elem,
1977 unmatched = matcher( seed, null, xml, [] ),
1978 i = seed.length;
1979  
1980 // Match elements unmatched by `matcher`
1981 while ( i-- ) {
1982 if ( (elem = unmatched[i]) ) {
1983 seed[i] = !(matches[i] = elem);
1984 }
1985 }
1986 }) :
1987 function( elem, context, xml ) {
1988 input[0] = elem;
1989 matcher( input, null, xml, results );
1990 // Don't keep the element (issue #299)
1991 input[0] = null;
1992 return !results.pop();
1993 };
1994 }),
1995  
1996 "has": markFunction(function( selector ) {
1997 return function( elem ) {
1998 return Sizzle( selector, elem ).length > 0;
1999 };
2000 }),
2001  
2002 "contains": markFunction(function( text ) {
2003 text = text.replace( runescape, funescape );
2004 return function( elem ) {
2005 return ( elem.textContent || elem.innerText || getText( elem ) ).indexOf( text ) > -1;
2006 };
2007 }),
2008  
2009 // "Whether an element is represented by a :lang() selector
2010 // is based solely on the element's language value
2011 // being equal to the identifier C,
2012 // or beginning with the identifier C immediately followed by "-".
2013 // The matching of C against the element's language value is performed case-insensitively.
2014 // The identifier C does not have to be a valid language name."
2015 // http://www.w3.org/TR/selectors/#lang-pseudo
2016 "lang": markFunction( function( lang ) {
2017 // lang value must be a valid identifier
2018 if ( !ridentifier.test(lang || "") ) {
2019 Sizzle.error( "unsupported lang: " + lang );
2020 }
2021 lang = lang.replace( runescape, funescape ).toLowerCase();
2022 return function( elem ) {
2023 var elemLang;
2024 do {
2025 if ( (elemLang = documentIsHTML ?
2026 elem.lang :
2027 elem.getAttribute("xml:lang") || elem.getAttribute("lang")) ) {
2028  
2029 elemLang = elemLang.toLowerCase();
2030 return elemLang === lang || elemLang.indexOf( lang + "-" ) === 0;
2031 }
2032 } while ( (elem = elem.parentNode) && elem.nodeType === 1 );
2033 return false;
2034 };
2035 }),
2036  
2037 // Miscellaneous
2038 "target": function( elem ) {
2039 var hash = window.location && window.location.hash;
2040 return hash && hash.slice( 1 ) === elem.id;
2041 },
2042  
2043 "root": function( elem ) {
2044 return elem === docElem;
2045 },
2046  
2047 "focus": function( elem ) {
2048 return elem === document.activeElement && (!document.hasFocus || document.hasFocus()) && !!(elem.type || elem.href || ~elem.tabIndex);
2049 },
2050  
2051 // Boolean properties
2052 "enabled": createDisabledPseudo( false ),
2053 "disabled": createDisabledPseudo( true ),
2054  
2055 "checked": function( elem ) {
2056 // In CSS3, :checked should return both checked and selected elements
2057 // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked
2058 var nodeName = elem.nodeName.toLowerCase();
2059 return (nodeName === "input" && !!elem.checked) || (nodeName === "option" && !!elem.selected);
2060 },
2061  
2062 "selected": function( elem ) {
2063 // Accessing this property makes selected-by-default
2064 // options in Safari work properly
2065 if ( elem.parentNode ) {
2066 elem.parentNode.selectedIndex;
2067 }
2068  
2069 return elem.selected === true;
2070 },
2071  
2072 // Contents
2073 "empty": function( elem ) {
2074 // http://www.w3.org/TR/selectors/#empty-pseudo
2075 // :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5),
2076 // but not by others (comment: 8; processing instruction: 7; etc.)
2077 // nodeType < 6 works because attributes (2) do not appear as children
2078 for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {
2079 if ( elem.nodeType < 6 ) {
2080 return false;
2081 }
2082 }
2083 return true;
2084 },
2085  
2086 "parent": function( elem ) {
2087 return !Expr.pseudos["empty"]( elem );
2088 },
2089  
2090 // Element/input types
2091 "header": function( elem ) {
2092 return rheader.test( elem.nodeName );
2093 },
2094  
2095 "input": function( elem ) {
2096 return rinputs.test( elem.nodeName );
2097 },
2098  
2099 "button": function( elem ) {
2100 var name = elem.nodeName.toLowerCase();
2101 return name === "input" && elem.type === "button" || name === "button";
2102 },
2103  
2104 "text": function( elem ) {
2105 var attr;
2106 return elem.nodeName.toLowerCase() === "input" &&
2107 elem.type === "text" &&
2108  
2109 // Support: IE<8
2110 // New HTML5 attribute values (e.g., "search") appear with elem.type === "text"
2111 ( (attr = elem.getAttribute("type")) == null || attr.toLowerCase() === "text" );
2112 },
2113  
2114 // Position-in-collection
2115 "first": createPositionalPseudo(function() {
2116 return [ 0 ];
2117 }),
2118  
2119 "last": createPositionalPseudo(function( matchIndexes, length ) {
2120 return [ length - 1 ];
2121 }),
2122  
2123 "eq": createPositionalPseudo(function( matchIndexes, length, argument ) {
2124 return [ argument < 0 ? argument + length : argument ];
2125 }),
2126  
2127 "even": createPositionalPseudo(function( matchIndexes, length ) {
2128 var i = 0;
2129 for ( ; i < length; i += 2 ) {
2130 matchIndexes.push( i );
2131 }
2132 return matchIndexes;
2133 }),
2134  
2135 "odd": createPositionalPseudo(function( matchIndexes, length ) {
2136 var i = 1;
2137 for ( ; i < length; i += 2 ) {
2138 matchIndexes.push( i );
2139 }
2140 return matchIndexes;
2141 }),
2142  
2143 "lt": createPositionalPseudo(function( matchIndexes, length, argument ) {
2144 var i = argument < 0 ? argument + length : argument;
2145 for ( ; --i >= 0; ) {
2146 matchIndexes.push( i );
2147 }
2148 return matchIndexes;
2149 }),
2150  
2151 "gt": createPositionalPseudo(function( matchIndexes, length, argument ) {
2152 var i = argument < 0 ? argument + length : argument;
2153 for ( ; ++i < length; ) {
2154 matchIndexes.push( i );
2155 }
2156 return matchIndexes;
2157 })
2158 }
2159 };
2160  
2161 Expr.pseudos["nth"] = Expr.pseudos["eq"];
2162  
2163 // Add button/input type pseudos
2164 for ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) {
2165 Expr.pseudos[ i ] = createInputPseudo( i );
2166 }
2167 for ( i in { submit: true, reset: true } ) {
2168 Expr.pseudos[ i ] = createButtonPseudo( i );
2169 }
2170  
2171 // Easy API for creating new setFilters
2172 function setFilters() {}
2173 setFilters.prototype = Expr.filters = Expr.pseudos;
2174 Expr.setFilters = new setFilters();
2175  
2176 tokenize = Sizzle.tokenize = function( selector, parseOnly ) {
2177 var matched, match, tokens, type,
2178 soFar, groups, preFilters,
2179 cached = tokenCache[ selector + " " ];
2180  
2181 if ( cached ) {
2182 return parseOnly ? 0 : cached.slice( 0 );
2183 }
2184  
2185 soFar = selector;
2186 groups = [];
2187 preFilters = Expr.preFilter;
2188  
2189 while ( soFar ) {
2190  
2191 // Comma and first run
2192 if ( !matched || (match = rcomma.exec( soFar )) ) {
2193 if ( match ) {
2194 // Don't consume trailing commas as valid
2195 soFar = soFar.slice( match[0].length ) || soFar;
2196 }
2197 groups.push( (tokens = []) );
2198 }
2199  
2200 matched = false;
2201  
2202 // Combinators
2203 if ( (match = rcombinators.exec( soFar )) ) {
2204 matched = match.shift();
2205 tokens.push({
2206 value: matched,
2207 // Cast descendant combinators to space
2208 type: match[0].replace( rtrim, " " )
2209 });
2210 soFar = soFar.slice( matched.length );
2211 }
2212  
2213 // Filters
2214 for ( type in Expr.filter ) {
2215 if ( (match = matchExpr[ type ].exec( soFar )) && (!preFilters[ type ] ||
2216 (match = preFilters[ type ]( match ))) ) {
2217 matched = match.shift();
2218 tokens.push({
2219 value: matched,
2220 type: type,
2221 matches: match
2222 });
2223 soFar = soFar.slice( matched.length );
2224 }
2225 }
2226  
2227 if ( !matched ) {
2228 break;
2229 }
2230 }
2231  
2232 // Return the length of the invalid excess
2233 // if we're just parsing
2234 // Otherwise, throw an error or return tokens
2235 return parseOnly ?
2236 soFar.length :
2237 soFar ?
2238 Sizzle.error( selector ) :
2239 // Cache the tokens
2240 tokenCache( selector, groups ).slice( 0 );
2241 };
2242  
2243 function toSelector( tokens ) {
2244 var i = 0,
2245 len = tokens.length,
2246 selector = "";
2247 for ( ; i < len; i++ ) {
2248 selector += tokens[i].value;
2249 }
2250 return selector;
2251 }
2252  
2253 function addCombinator( matcher, combinator, base ) {
2254 var dir = combinator.dir,
2255 skip = combinator.next,
2256 key = skip || dir,
2257 checkNonElements = base && key === "parentNode",
2258 doneName = done++;
2259  
2260 return combinator.first ?
2261 // Check against closest ancestor/preceding element
2262 function( elem, context, xml ) {
2263 while ( (elem = elem[ dir ]) ) {
2264 if ( elem.nodeType === 1 || checkNonElements ) {
2265 return matcher( elem, context, xml );
2266 }
2267 }
2268 return false;
2269 } :
2270  
2271 // Check against all ancestor/preceding elements
2272 function( elem, context, xml ) {
2273 var oldCache, uniqueCache, outerCache,
2274 newCache = [ dirruns, doneName ];
2275  
2276 // We can't set arbitrary data on XML nodes, so they don't benefit from combinator caching
2277 if ( xml ) {
2278 while ( (elem = elem[ dir ]) ) {
2279 if ( elem.nodeType === 1 || checkNonElements ) {
2280 if ( matcher( elem, context, xml ) ) {
2281 return true;
2282 }
2283 }
2284 }
2285 } else {
2286 while ( (elem = elem[ dir ]) ) {
2287 if ( elem.nodeType === 1 || checkNonElements ) {
2288 outerCache = elem[ expando ] || (elem[ expando ] = {});
2289  
2290 // Support: IE <9 only
2291 // Defend against cloned attroperties (jQuery gh-1709)
2292 uniqueCache = outerCache[ elem.uniqueID ] || (outerCache[ elem.uniqueID ] = {});
2293  
2294 if ( skip && skip === elem.nodeName.toLowerCase() ) {
2295 elem = elem[ dir ] || elem;
2296 } else if ( (oldCache = uniqueCache[ key ]) &&
2297 oldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) {
2298  
2299 // Assign to newCache so results back-propagate to previous elements
2300 return (newCache[ 2 ] = oldCache[ 2 ]);
2301 } else {
2302 // Reuse newcache so results back-propagate to previous elements
2303 uniqueCache[ key ] = newCache;
2304  
2305 // A match means we're done; a fail means we have to keep checking
2306 if ( (newCache[ 2 ] = matcher( elem, context, xml )) ) {
2307 return true;
2308 }
2309 }
2310 }
2311 }
2312 }
2313 return false;
2314 };
2315 }
2316  
2317 function elementMatcher( matchers ) {
2318 return matchers.length > 1 ?
2319 function( elem, context, xml ) {
2320 var i = matchers.length;
2321 while ( i-- ) {
2322 if ( !matchers[i]( elem, context, xml ) ) {
2323 return false;
2324 }
2325 }
2326 return true;
2327 } :
2328 matchers[0];
2329 }
2330  
2331 function multipleContexts( selector, contexts, results ) {
2332 var i = 0,
2333 len = contexts.length;
2334 for ( ; i < len; i++ ) {
2335 Sizzle( selector, contexts[i], results );
2336 }
2337 return results;
2338 }
2339  
2340 function condense( unmatched, map, filter, context, xml ) {
2341 var elem,
2342 newUnmatched = [],
2343 i = 0,
2344 len = unmatched.length,
2345 mapped = map != null;
2346  
2347 for ( ; i < len; i++ ) {
2348 if ( (elem = unmatched[i]) ) {
2349 if ( !filter || filter( elem, context, xml ) ) {
2350 newUnmatched.push( elem );
2351 if ( mapped ) {
2352 map.push( i );
2353 }
2354 }
2355 }
2356 }
2357  
2358 return newUnmatched;
2359 }
2360  
2361 function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) {
2362 if ( postFilter && !postFilter[ expando ] ) {
2363 postFilter = setMatcher( postFilter );
2364 }
2365 if ( postFinder && !postFinder[ expando ] ) {
2366 postFinder = setMatcher( postFinder, postSelector );
2367 }
2368 return markFunction(function( seed, results, context, xml ) {
2369 var temp, i, elem,
2370 preMap = [],
2371 postMap = [],
2372 preexisting = results.length,
2373  
2374 // Get initial elements from seed or context
2375 elems = seed || multipleContexts( selector || "*", context.nodeType ? [ context ] : context, [] ),
2376  
2377 // Prefilter to get matcher input, preserving a map for seed-results synchronization
2378 matcherIn = preFilter && ( seed || !selector ) ?
2379 condense( elems, preMap, preFilter, context, xml ) :
2380 elems,
2381  
2382 matcherOut = matcher ?
2383 // If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results,
2384 postFinder || ( seed ? preFilter : preexisting || postFilter ) ?
2385  
2386 // ...intermediate processing is necessary
2387 [] :
2388  
2389 // ...otherwise use results directly
2390 results :
2391 matcherIn;
2392  
2393 // Find primary matches
2394 if ( matcher ) {
2395 matcher( matcherIn, matcherOut, context, xml );
2396 }
2397  
2398 // Apply postFilter
2399 if ( postFilter ) {
2400 temp = condense( matcherOut, postMap );
2401 postFilter( temp, [], context, xml );
2402  
2403 // Un-match failing elements by moving them back to matcherIn
2404 i = temp.length;
2405 while ( i-- ) {
2406 if ( (elem = temp[i]) ) {
2407 matcherOut[ postMap[i] ] = !(matcherIn[ postMap[i] ] = elem);
2408 }
2409 }
2410 }
2411  
2412 if ( seed ) {
2413 if ( postFinder || preFilter ) {
2414 if ( postFinder ) {
2415 // Get the final matcherOut by condensing this intermediate into postFinder contexts
2416 temp = [];
2417 i = matcherOut.length;
2418 while ( i-- ) {
2419 if ( (elem = matcherOut[i]) ) {
2420 // Restore matcherIn since elem is not yet a final match
2421 temp.push( (matcherIn[i] = elem) );
2422 }
2423 }
2424 postFinder( null, (matcherOut = []), temp, xml );
2425 }
2426  
2427 // Move matched elements from seed to results to keep them synchronized
2428 i = matcherOut.length;
2429 while ( i-- ) {
2430 if ( (elem = matcherOut[i]) &&
2431 (temp = postFinder ? indexOf( seed, elem ) : preMap[i]) > -1 ) {
2432  
2433 seed[temp] = !(results[temp] = elem);
2434 }
2435 }
2436 }
2437  
2438 // Add elements to results, through postFinder if defined
2439 } else {
2440 matcherOut = condense(
2441 matcherOut === results ?
2442 matcherOut.splice( preexisting, matcherOut.length ) :
2443 matcherOut
2444 );
2445 if ( postFinder ) {
2446 postFinder( null, results, matcherOut, xml );
2447 } else {
2448 push.apply( results, matcherOut );
2449 }
2450 }
2451 });
2452 }
2453  
2454 function matcherFromTokens( tokens ) {
2455 var checkContext, matcher, j,
2456 len = tokens.length,
2457 leadingRelative = Expr.relative[ tokens[0].type ],
2458 implicitRelative = leadingRelative || Expr.relative[" "],
2459 i = leadingRelative ? 1 : 0,
2460  
2461 // The foundational matcher ensures that elements are reachable from top-level context(s)
2462 matchContext = addCombinator( function( elem ) {
2463 return elem === checkContext;
2464 }, implicitRelative, true ),
2465 matchAnyContext = addCombinator( function( elem ) {
2466 return indexOf( checkContext, elem ) > -1;
2467 }, implicitRelative, true ),
2468 matchers = [ function( elem, context, xml ) {
2469 var ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || (
2470 (checkContext = context).nodeType ?
2471 matchContext( elem, context, xml ) :
2472 matchAnyContext( elem, context, xml ) );
2473 // Avoid hanging onto element (issue #299)
2474 checkContext = null;
2475 return ret;
2476 } ];
2477  
2478 for ( ; i < len; i++ ) {
2479 if ( (matcher = Expr.relative[ tokens[i].type ]) ) {
2480 matchers = [ addCombinator(elementMatcher( matchers ), matcher) ];
2481 } else {
2482 matcher = Expr.filter[ tokens[i].type ].apply( null, tokens[i].matches );
2483  
2484 // Return special upon seeing a positional matcher
2485 if ( matcher[ expando ] ) {
2486 // Find the next relative operator (if any) for proper handling
2487 j = ++i;
2488 for ( ; j < len; j++ ) {
2489 if ( Expr.relative[ tokens[j].type ] ) {
2490 break;
2491 }
2492 }
2493 return setMatcher(
2494 i > 1 && elementMatcher( matchers ),
2495 i > 1 && toSelector(
2496 // If the preceding token was a descendant combinator, insert an implicit any-element `*`
2497 tokens.slice( 0, i - 1 ).concat({ value: tokens[ i - 2 ].type === " " ? "*" : "" })
2498 ).replace( rtrim, "$1" ),
2499 matcher,
2500 i < j && matcherFromTokens( tokens.slice( i, j ) ),
2501 j < len && matcherFromTokens( (tokens = tokens.slice( j )) ),
2502 j < len && toSelector( tokens )
2503 );
2504 }
2505 matchers.push( matcher );
2506 }
2507 }
2508  
2509 return elementMatcher( matchers );
2510 }
2511  
2512 function matcherFromGroupMatchers( elementMatchers, setMatchers ) {
2513 var bySet = setMatchers.length > 0,
2514 byElement = elementMatchers.length > 0,
2515 superMatcher = function( seed, context, xml, results, outermost ) {
2516 var elem, j, matcher,
2517 matchedCount = 0,
2518 i = "0",
2519 unmatched = seed && [],
2520 setMatched = [],
2521 contextBackup = outermostContext,
2522 // We must always have either seed elements or outermost context
2523 elems = seed || byElement && Expr.find["TAG"]( "*", outermost ),
2524 // Use integer dirruns iff this is the outermost matcher
2525 dirrunsUnique = (dirruns += contextBackup == null ? 1 : Math.random() || 0.1),
2526 len = elems.length;
2527  
2528 if ( outermost ) {
2529 outermostContext = context === document || context || outermost;
2530 }
2531  
2532 // Add elements passing elementMatchers directly to results
2533 // Support: IE<9, Safari
2534 // Tolerate NodeList properties (IE: "length"; Safari: <number>) matching elements by id
2535 for ( ; i !== len && (elem = elems[i]) != null; i++ ) {
2536 if ( byElement && elem ) {
2537 j = 0;
2538 if ( !context && elem.ownerDocument !== document ) {
2539 setDocument( elem );
2540 xml = !documentIsHTML;
2541 }
2542 while ( (matcher = elementMatchers[j++]) ) {
2543 if ( matcher( elem, context || document, xml) ) {
2544 results.push( elem );
2545 break;
2546 }
2547 }
2548 if ( outermost ) {
2549 dirruns = dirrunsUnique;
2550 }
2551 }
2552  
2553 // Track unmatched elements for set filters
2554 if ( bySet ) {
2555 // They will have gone through all possible matchers
2556 if ( (elem = !matcher && elem) ) {
2557 matchedCount--;
2558 }
2559  
2560 // Lengthen the array for every element, matched or not
2561 if ( seed ) {
2562 unmatched.push( elem );
2563 }
2564 }
2565 }
2566  
2567 // `i` is now the count of elements visited above, and adding it to `matchedCount`
2568 // makes the latter nonnegative.
2569 matchedCount += i;
2570  
2571 // Apply set filters to unmatched elements
2572 // NOTE: This can be skipped if there are no unmatched elements (i.e., `matchedCount`
2573 // equals `i`), unless we didn't visit _any_ elements in the above loop because we have
2574 // no element matchers and no seed.
2575 // Incrementing an initially-string "0" `i` allows `i` to remain a string only in that
2576 // case, which will result in a "00" `matchedCount` that differs from `i` but is also
2577 // numerically zero.
2578 if ( bySet && i !== matchedCount ) {
2579 j = 0;
2580 while ( (matcher = setMatchers[j++]) ) {
2581 matcher( unmatched, setMatched, context, xml );
2582 }
2583  
2584 if ( seed ) {
2585 // Reintegrate element matches to eliminate the need for sorting
2586 if ( matchedCount > 0 ) {
2587 while ( i-- ) {
2588 if ( !(unmatched[i] || setMatched[i]) ) {
2589 setMatched[i] = pop.call( results );
2590 }
2591 }
2592 }
2593  
2594 // Discard index placeholder values to get only actual matches
2595 setMatched = condense( setMatched );
2596 }
2597  
2598 // Add matches to results
2599 push.apply( results, setMatched );
2600  
2601 // Seedless set matches succeeding multiple successful matchers stipulate sorting
2602 if ( outermost && !seed && setMatched.length > 0 &&
2603 ( matchedCount + setMatchers.length ) > 1 ) {
2604  
2605 Sizzle.uniqueSort( results );
2606 }
2607 }
2608  
2609 // Override manipulation of globals by nested matchers
2610 if ( outermost ) {
2611 dirruns = dirrunsUnique;
2612 outermostContext = contextBackup;
2613 }
2614  
2615 return unmatched;
2616 };
2617  
2618 return bySet ?
2619 markFunction( superMatcher ) :
2620 superMatcher;
2621 }
2622  
2623 compile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) {
2624 var i,
2625 setMatchers = [],
2626 elementMatchers = [],
2627 cached = compilerCache[ selector + " " ];
2628  
2629 if ( !cached ) {
2630 // Generate a function of recursive functions that can be used to check each element
2631 if ( !match ) {
2632 match = tokenize( selector );
2633 }
2634 i = match.length;
2635 while ( i-- ) {
2636 cached = matcherFromTokens( match[i] );
2637 if ( cached[ expando ] ) {
2638 setMatchers.push( cached );
2639 } else {
2640 elementMatchers.push( cached );
2641 }
2642 }
2643  
2644 // Cache the compiled function
2645 cached = compilerCache( selector, matcherFromGroupMatchers( elementMatchers, setMatchers ) );
2646  
2647 // Save selector and tokenization
2648 cached.selector = selector;
2649 }
2650 return cached;
2651 };
2652  
2653 /**
2654 * A low-level selection function that works with Sizzle's compiled
2655 * selector functions
2656 * @param {String|Function} selector A selector or a pre-compiled
2657 * selector function built with Sizzle.compile
2658 * @param {Element} context
2659 * @param {Array} [results]
2660 * @param {Array} [seed] A set of elements to match against
2661 */
2662 select = Sizzle.select = function( selector, context, results, seed ) {
2663 var i, tokens, token, type, find,
2664 compiled = typeof selector === "function" && selector,
2665 match = !seed && tokenize( (selector = compiled.selector || selector) );
2666  
2667 results = results || [];
2668  
2669 // Try to minimize operations if there is only one selector in the list and no seed
2670 // (the latter of which guarantees us context)
2671 if ( match.length === 1 ) {
2672  
2673 // Reduce context if the leading compound selector is an ID
2674 tokens = match[0] = match[0].slice( 0 );
2675 if ( tokens.length > 2 && (token = tokens[0]).type === "ID" &&
2676 context.nodeType === 9 && documentIsHTML && Expr.relative[ tokens[1].type ] ) {
2677  
2678 context = ( Expr.find["ID"]( token.matches[0].replace(runescape, funescape), context ) || [] )[0];
2679 if ( !context ) {
2680 return results;
2681  
2682 // Precompiled matchers will still verify ancestry, so step up a level
2683 } else if ( compiled ) {
2684 context = context.parentNode;
2685 }
2686  
2687 selector = selector.slice( tokens.shift().value.length );
2688 }
2689  
2690 // Fetch a seed set for right-to-left matching
2691 i = matchExpr["needsContext"].test( selector ) ? 0 : tokens.length;
2692 while ( i-- ) {
2693 token = tokens[i];
2694  
2695 // Abort if we hit a combinator
2696 if ( Expr.relative[ (type = token.type) ] ) {
2697 break;
2698 }
2699 if ( (find = Expr.find[ type ]) ) {
2700 // Search, expanding context for leading sibling combinators
2701 if ( (seed = find(
2702 token.matches[0].replace( runescape, funescape ),
2703 rsibling.test( tokens[0].type ) && testContext( context.parentNode ) || context
2704 )) ) {
2705  
2706 // If seed is empty or no tokens remain, we can return early
2707 tokens.splice( i, 1 );
2708 selector = seed.length && toSelector( tokens );
2709 if ( !selector ) {
2710 push.apply( results, seed );
2711 return results;
2712 }
2713  
2714 break;
2715 }
2716 }
2717 }
2718 }
2719  
2720 // Compile and execute a filtering function if one is not provided
2721 // Provide `match` to avoid retokenization if we modified the selector above
2722 ( compiled || compile( selector, match ) )(
2723 seed,
2724 context,
2725 !documentIsHTML,
2726 results,
2727 !context || rsibling.test( selector ) && testContext( context.parentNode ) || context
2728 );
2729 return results;
2730 };
2731  
2732 // One-time assignments
2733  
2734 // Sort stability
2735 support.sortStable = expando.split("").sort( sortOrder ).join("") === expando;
2736  
2737 // Support: Chrome 14-35+
2738 // Always assume duplicates if they aren't passed to the comparison function
2739 support.detectDuplicates = !!hasDuplicate;
2740  
2741 // Initialize against the default document
2742 setDocument();
2743  
2744 // Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27)
2745 // Detached nodes confoundingly follow *each other*
2746 support.sortDetached = assert(function( el ) {
2747 // Should return 1, but returns 4 (following)
2748 return el.compareDocumentPosition( document.createElement("fieldset") ) & 1;
2749 });
2750  
2751 // Support: IE<8
2752 // Prevent attribute/property "interpolation"
2753 // https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx
2754 if ( !assert(function( el ) {
2755 el.innerHTML = "<a href='#'></a>";
2756 return el.firstChild.getAttribute("href") === "#" ;
2757 }) ) {
2758 addHandle( "type|href|height|width", function( elem, name, isXML ) {
2759 if ( !isXML ) {
2760 return elem.getAttribute( name, name.toLowerCase() === "type" ? 1 : 2 );
2761 }
2762 });
2763 }
2764  
2765 // Support: IE<9
2766 // Use defaultValue in place of getAttribute("value")
2767 if ( !support.attributes || !assert(function( el ) {
2768 el.innerHTML = "<input/>";
2769 el.firstChild.setAttribute( "value", "" );
2770 return el.firstChild.getAttribute( "value" ) === "";
2771 }) ) {
2772 addHandle( "value", function( elem, name, isXML ) {
2773 if ( !isXML && elem.nodeName.toLowerCase() === "input" ) {
2774 return elem.defaultValue;
2775 }
2776 });
2777 }
2778  
2779 // Support: IE<9
2780 // Use getAttributeNode to fetch booleans when getAttribute lies
2781 if ( !assert(function( el ) {
2782 return el.getAttribute("disabled") == null;
2783 }) ) {
2784 addHandle( booleans, function( elem, name, isXML ) {
2785 var val;
2786 if ( !isXML ) {
2787 return elem[ name ] === true ? name.toLowerCase() :
2788 (val = elem.getAttributeNode( name )) && val.specified ?
2789 val.value :
2790 null;
2791 }
2792 });
2793 }
2794  
2795 return Sizzle;
2796  
2797 })( window );
2798  
2799  
2800  
2801 jQuery.find = Sizzle;
2802 jQuery.expr = Sizzle.selectors;
2803  
2804 // Deprecated
2805 jQuery.expr[ ":" ] = jQuery.expr.pseudos;
2806 jQuery.uniqueSort = jQuery.unique = Sizzle.uniqueSort;
2807 jQuery.text = Sizzle.getText;
2808 jQuery.isXMLDoc = Sizzle.isXML;
2809 jQuery.contains = Sizzle.contains;
2810 jQuery.escapeSelector = Sizzle.escape;
2811  
2812  
2813  
2814  
2815 var dir = function( elem, dir, until ) {
2816 var matched = [],
2817 truncate = until !== undefined;
2818  
2819 while ( ( elem = elem[ dir ] ) && elem.nodeType !== 9 ) {
2820 if ( elem.nodeType === 1 ) {
2821 if ( truncate && jQuery( elem ).is( until ) ) {
2822 break;
2823 }
2824 matched.push( elem );
2825 }
2826 }
2827 return matched;
2828 };
2829  
2830  
2831 var siblings = function( n, elem ) {
2832 var matched = [];
2833  
2834 for ( ; n; n = n.nextSibling ) {
2835 if ( n.nodeType === 1 && n !== elem ) {
2836 matched.push( n );
2837 }
2838 }
2839  
2840 return matched;
2841 };
2842  
2843  
2844 var rneedsContext = jQuery.expr.match.needsContext;
2845  
2846 var rsingleTag = ( /^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i );
2847  
2848  
2849  
2850 <([a-z][^\/\0><\/\1>var risSimple = /^.[^:#\[\.,]*$/;
2851  
2852 <([a-z][^\/\0><\/\1>// Implement the identical functionality for filter and not
2853 <([a-z][^\/\0><\/\1>function winnow( elements, qualifier, not ) {
2854 <([a-z][^\/\0><\/\1> if ( jQuery.isFunction( qualifier ) ) {
2855 <([a-z][^\/\0><\/\1> return jQuery.grep( elements, function( elem, i ) {
2856 <([a-z][^\/\0><\/\1> return !!qualifier.call( elem, i, elem ) !== not;
2857 <([a-z][^\/\0><\/\1> } );
2858 <([a-z][^\/\0><\/\1> }
2859  
2860 <([a-z][^\/\0><\/\1> // Single element
2861 <([a-z][^\/\0><\/\1> if ( qualifier.nodeType ) {
2862 <([a-z][^\/\0><\/\1> return jQuery.grep( elements, function( elem ) {
2863 <([a-z][^\/\0><\/\1> return ( elem === qualifier ) !== not;
2864 <([a-z][^\/\0><\/\1> } );
2865 <([a-z][^\/\0><\/\1> }
2866  
2867 <([a-z][^\/\0><\/\1> // Arraylike of elements (jQuery, arguments, Array)
2868 <([a-z][^\/\0><\/\1> if ( typeof qualifier !== "string" ) {
2869 <([a-z][^\/\0><\/\1> return jQuery.grep( elements, function( elem ) {
2870 <([a-z][^\/\0><\/\1> return ( indexOf.call( qualifier, elem ) > -1 ) !== not;
2871 <([a-z][^\/\0><\/\1> } );
2872 <([a-z][^\/\0><\/\1> }
2873  
2874 <([a-z][^\/\0><\/\1> // Simple selector that can be filtered directly, removing non-Elements
2875 <([a-z][^\/\0><\/\1> if ( risSimple.test( qualifier ) ) {
2876 <([a-z][^\/\0><\/\1> return jQuery.filter( qualifier, elements, not );
2877 <([a-z][^\/\0><\/\1> }
2878  
2879 <([a-z][^\/\0><\/\1> // Complex selector, compare the two sets, removing non-Elements
2880 <([a-z][^\/\0><\/\1> qualifier = jQuery.filter( qualifier, elements );
2881 <([a-z][^\/\0><\/\1> return jQuery.grep( elements, function( elem ) {
2882 <([a-z][^\/\0><\/\1> return ( indexOf.call( qualifier, elem ) > -1 ) !== not && elem.nodeType === 1;
2883 <([a-z][^\/\0><\/\1> } );
2884 <([a-z][^\/\0><\/\1>}
2885  
2886 <([a-z][^\/\0><\/\1>jQuery.filter = function( expr, elems, not ) {
2887 <([a-z][^\/\0><\/\1> var elem = elems[ 0 ];
2888  
2889 <([a-z][^\/\0><\/\1> if ( not ) {
2890 <([a-z][^\/\0><\/\1> expr = ":not(" + expr + ")";
2891 <([a-z][^\/\0><\/\1> }
2892  
2893 <([a-z][^\/\0><\/\1> if ( elems.length === 1 && elem.nodeType === 1 ) {
2894 <([a-z][^\/\0><\/\1> return jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : [];
2895 <([a-z][^\/\0><\/\1> }
2896  
2897 <([a-z][^\/\0><\/\1> return jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) {
2898 <([a-z][^\/\0><\/\1> return elem.nodeType === 1;
2899 <([a-z][^\/\0><\/\1> } ) );
2900 <([a-z][^\/\0><\/\1>};
2901  
2902 <([a-z][^\/\0><\/\1>jQuery.fn.extend( {
2903 <([a-z][^\/\0><\/\1> find: function( selector ) {
2904 <([a-z][^\/\0><\/\1> var i, ret,
2905 <([a-z][^\/\0><\/\1> len = this.length,
2906 <([a-z][^\/\0><\/\1> self = this;
2907  
2908 <([a-z][^\/\0><\/\1> if ( typeof selector !== "string" ) {
2909 <([a-z][^\/\0><\/\1> return this.pushStack( jQuery( selector ).filter( function() {
2910 <([a-z][^\/\0><\/\1> for ( i = 0; i < len; i++ ) {
2911 <([a-z][^\/\0><\/\1> if ( jQuery.contains( self[ i ], this ) ) {
2912 <([a-z][^\/\0><\/\1> return true;
2913 <([a-z][^\/\0><\/\1> }
2914 <([a-z][^\/\0><\/\1> }
2915 <([a-z][^\/\0><\/\1> } ) );
2916 <([a-z][^\/\0><\/\1> }
2917  
2918 <([a-z][^\/\0><\/\1> ret = this.pushStack( [] );
2919  
2920 <([a-z][^\/\0><\/\1> for ( i = 0; i < len; i++ ) {
2921 <([a-z][^\/\0><\/\1> jQuery.find( selector, self[ i ], ret );
2922 <([a-z][^\/\0><\/\1> }
2923  
2924 <([a-z][^\/\0><\/\1> return len > 1 ? jQuery.uniqueSort( ret ) : ret;
2925 <([a-z][^\/\0><\/\1> },
2926 <([a-z][^\/\0><\/\1> filter: function( selector ) {
2927 <([a-z][^\/\0><\/\1> return this.pushStack( winnow( this, selector || [], false ) );
2928 <([a-z][^\/\0><\/\1> },
2929 <([a-z][^\/\0><\/\1> not: function( selector ) {
2930 <([a-z][^\/\0><\/\1> return this.pushStack( winnow( this, selector || [], true ) );
2931 <([a-z][^\/\0><\/\1> },
2932 <([a-z][^\/\0><\/\1> is: function( selector ) {
2933 <([a-z][^\/\0><\/\1> return !!winnow(
2934 <([a-z][^\/\0><\/\1> this,
2935  
2936 <([a-z][^\/\0><\/\1> // If this is a positional/relative selector, check membership in the returned set
2937 <([a-z][^\/\0><\/\1> // so $("p:first").is("p:last") won't return true for a doc with two "p".
2938 <([a-z][^\/\0><\/\1> typeof selector === "string" && rneedsContext.test( selector ) ?
2939 <([a-z][^\/\0><\/\1> jQuery( selector ) :
2940 <([a-z][^\/\0><\/\1> selector || [],
2941 <([a-z][^\/\0><\/\1> false
2942 <([a-z][^\/\0><\/\1> ).length;
2943 <([a-z][^\/\0><\/\1> }
2944 <([a-z][^\/\0><\/\1>} );
2945  
2946  
2947 <([a-z][^\/\0><\/\1>// Initialize a jQuery object
2948  
2949  
2950 <([a-z][^\/\0><\/\1>// A central reference to the root jQuery(document)
2951 <([a-z][^\/\0><\/\1>var rootjQuery,
2952  
2953 <([a-z][^\/\0><\/\1> // A simple way to check for HTML strings
2954 <([a-z][^\/\0><\/\1> // Prioritize #id over <tag> to avoid XSS via location.hash (#9521)
2955 <([a-z][^\/\0><\/\1> // Strict HTML recognition (#11290: must start with <)
2956 <([a-z][^\/\0><\/\1> // Shortcut simple #id case for speed
2957 <([a-z][^\/\0><\/\1> rquickExpr = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/,
2958  
2959 <([a-z][^\/\0><\/\1><[\w\W]+> init = jQuery.fn.init = function( selector, context, root ) {
2960 <([a-z][^\/\0><\/\1><[\w\W]+> var match, elem;
2961  
2962 <([a-z][^\/\0><\/\1><[\w\W]+> // HANDLE: $(""), $(null), $(undefined), $(false)
2963 <([a-z][^\/\0><\/\1><[\w\W]+> if ( !selector ) {
2964 <([a-z][^\/\0><\/\1><[\w\W]+> return this;
2965 <([a-z][^\/\0><\/\1><[\w\W]+> }
2966  
2967 <([a-z][^\/\0><\/\1><[\w\W]+> // Method init() accepts an alternate rootjQuery
2968 <([a-z][^\/\0><\/\1><[\w\W]+> // so migrate can support jQuery.sub (gh-2101)
2969 <([a-z][^\/\0><\/\1><[\w\W]+> root = root || rootjQuery;
2970  
2971 <([a-z][^\/\0><\/\1><[\w\W]+> // Handle HTML strings
2972 <([a-z][^\/\0><\/\1><[\w\W]+> if ( typeof selector === "string" ) {
2973 <([a-z][^\/\0><\/\1><[\w\W]+> if ( selector[ 0 ] === "<" &&
2974 <([a-z][^\/\0><\/\1><[\w\W]+> selector[ selector.length - 1 ] === ">" &&
2975 <([a-z][^\/\0><\/\1><[\w\W]+> selector.length >= 3 ) {
2976  
2977 <([a-z][^\/\0><\/\1><[\w\W]+> // Assume that strings that start and end with <> are HTML and skip the regex check
2978 <([a-z][^\/\0><\/\1><[\w\W]+> match = [ null, selector, null ];
2979  
2980 <([a-z][^\/\0><\/\1><[\w\W]+> } else {
2981 <([a-z][^\/\0><\/\1><[\w\W]+> match = rquickExpr.exec( selector );
2982 <([a-z][^\/\0><\/\1><[\w\W]+> }
2983  
2984 <([a-z][^\/\0><\/\1><[\w\W]+> // Match html or make sure no context is specified for #id
2985 <([a-z][^\/\0><\/\1><[\w\W]+> if ( match && ( match[ 1 ] || !context ) ) {
2986  
2987 <([a-z][^\/\0><\/\1><[\w\W]+> // HANDLE: $(html) -> $(array)
2988 <([a-z][^\/\0><\/\1><[\w\W]+> if ( match[ 1 ] ) {
2989 <([a-z][^\/\0><\/\1><[\w\W]+> context = context instanceof jQuery ? context[ 0 ] : context;
2990  
2991 <([a-z][^\/\0><\/\1><[\w\W]+> // Option to run scripts is true for back-compat
2992 <([a-z][^\/\0><\/\1><[\w\W]+> // Intentionally let the error be thrown if parseHTML is not present
2993 <([a-z][^\/\0><\/\1><[\w\W]+> jQuery.merge( this, jQuery.parseHTML(
2994 <([a-z][^\/\0><\/\1><[\w\W]+> match[ 1 ],
2995 <([a-z][^\/\0><\/\1><[\w\W]+> context && context.nodeType ? context.ownerDocument || context : document,
2996 <([a-z][^\/\0><\/\1><[\w\W]+> true
2997 <([a-z][^\/\0><\/\1><[\w\W]+> ) );
2998  
2999 <([a-z][^\/\0><\/\1><[\w\W]+> // HANDLE: $(html, props)
3000 <([a-z][^\/\0><\/\1><[\w\W]+> if ( rsingleTag.test( match[ 1 ] ) && jQuery.isPlainObject( context ) ) {
3001 <([a-z][^\/\0><\/\1><[\w\W]+> for ( match in context ) {
3002  
3003 <([a-z][^\/\0><\/\1><[\w\W]+> // Properties of context are called as methods if possible
3004 <([a-z][^\/\0><\/\1><[\w\W]+> if ( jQuery.isFunction( this[ match ] ) ) {
3005 <([a-z][^\/\0><\/\1><[\w\W]+> this[ match ]( context[ match ] );
3006  
3007 <([a-z][^\/\0><\/\1><[\w\W]+> // ...and otherwise set as attributes
3008 <([a-z][^\/\0><\/\1><[\w\W]+> } else {
3009 <([a-z][^\/\0><\/\1><[\w\W]+> this.attr( match, context[ match ] );
3010 <([a-z][^\/\0><\/\1><[\w\W]+> }
3011 <([a-z][^\/\0><\/\1><[\w\W]+> }
3012 <([a-z][^\/\0><\/\1><[\w\W]+> }
3013  
3014 <([a-z][^\/\0><\/\1><[\w\W]+> return this;
3015  
3016 <([a-z][^\/\0><\/\1><[\w\W]+> // HANDLE: $(#id)
3017 <([a-z][^\/\0><\/\1><[\w\W]+> } else {
3018 <([a-z][^\/\0><\/\1><[\w\W]+> elem = document.getElementById( match[ 2 ] );
3019  
3020 <([a-z][^\/\0><\/\1><[\w\W]+> if ( elem ) {
3021  
3022 <([a-z][^\/\0><\/\1><[\w\W]+> // Inject the element directly into the jQuery object
3023 <([a-z][^\/\0><\/\1><[\w\W]+> this[ 0 ] = elem;
3024 <([a-z][^\/\0><\/\1><[\w\W]+> this.length = 1;
3025 <([a-z][^\/\0><\/\1><[\w\W]+> }
3026 <([a-z][^\/\0><\/\1><[\w\W]+> return this;
3027 <([a-z][^\/\0><\/\1><[\w\W]+> }
3028  
3029 <([a-z][^\/\0><\/\1><[\w\W]+> // HANDLE: $(expr, $(...))
3030 <([a-z][^\/\0><\/\1><[\w\W]+> } else if ( !context || context.jquery ) {
3031 <([a-z][^\/\0><\/\1><[\w\W]+> return ( context || root ).find( selector );
3032  
3033 <([a-z][^\/\0><\/\1><[\w\W]+> // HANDLE: $(expr, context)
3034 <([a-z][^\/\0><\/\1><[\w\W]+> // (which is just equivalent to: $(context).find(expr)
3035 <([a-z][^\/\0><\/\1><[\w\W]+> } else {
3036 <([a-z][^\/\0><\/\1><[\w\W]+> return this.constructor( context ).find( selector );
3037 <([a-z][^\/\0><\/\1><[\w\W]+> }
3038  
3039 <([a-z][^\/\0><\/\1><[\w\W]+> // HANDLE: $(DOMElement)
3040 <([a-z][^\/\0><\/\1><[\w\W]+> } else if ( selector.nodeType ) {
3041 <([a-z][^\/\0><\/\1><[\w\W]+> this[ 0 ] = selector;
3042 <([a-z][^\/\0><\/\1><[\w\W]+> this.length = 1;
3043 <([a-z][^\/\0><\/\1><[\w\W]+> return this;
3044  
3045 <([a-z][^\/\0><\/\1><[\w\W]+> // HANDLE: $(function)
3046 <([a-z][^\/\0><\/\1><[\w\W]+> // Shortcut for document ready
3047 <([a-z][^\/\0><\/\1><[\w\W]+> } else if ( jQuery.isFunction( selector ) ) {
3048 <([a-z][^\/\0><\/\1><[\w\W]+> return root.ready !== undefined ?
3049 <([a-z][^\/\0><\/\1><[\w\W]+> root.ready( selector ) :
3050  
3051 <([a-z][^\/\0><\/\1><[\w\W]+> // Execute immediately if ready is not present
3052 <([a-z][^\/\0><\/\1><[\w\W]+> selector( jQuery );
3053 <([a-z][^\/\0><\/\1><[\w\W]+> }
3054  
3055 <([a-z][^\/\0><\/\1><[\w\W]+> return jQuery.makeArray( selector, this );
3056 <([a-z][^\/\0><\/\1><[\w\W]+> };
3057  
3058 <([a-z][^\/\0><\/\1><[\w\W]+>// Give the init function the jQuery prototype for later instantiation
3059 <([a-z][^\/\0><\/\1><[\w\W]+>init.prototype = jQuery.fn;
3060  
3061 <([a-z][^\/\0><\/\1><[\w\W]+>// Initialize central reference
3062 <([a-z][^\/\0><\/\1><[\w\W]+>rootjQuery = jQuery( document );
3063  
3064  
3065 <([a-z][^\/\0><\/\1><[\w\W]+>var rparentsprev = /^(?:parents|prev(?:Until|All))/,
3066  
3067 <([a-z][^\/\0><\/\1><[\w\W]+> // Methods guaranteed to produce a unique set when starting from a unique set
3068 <([a-z][^\/\0><\/\1><[\w\W]+> guaranteedUnique = {
3069 <([a-z][^\/\0><\/\1><[\w\W]+> children: true,
3070 <([a-z][^\/\0><\/\1><[\w\W]+> contents: true,
3071 <([a-z][^\/\0><\/\1><[\w\W]+> next: true,
3072 <([a-z][^\/\0><\/\1><[\w\W]+> prev: true
3073 <([a-z][^\/\0><\/\1><[\w\W]+> };
3074  
3075 <([a-z][^\/\0><\/\1><[\w\W]+>jQuery.fn.extend( {
3076 <([a-z][^\/\0><\/\1><[\w\W]+> has: function( target ) {
3077 <([a-z][^\/\0><\/\1><[\w\W]+> var targets = jQuery( target, this ),
3078 <([a-z][^\/\0><\/\1><[\w\W]+> l = targets.length;
3079  
3080 <([a-z][^\/\0><\/\1><[\w\W]+> return this.filter( function() {
3081 <([a-z][^\/\0><\/\1><[\w\W]+> var i = 0;
3082 <([a-z][^\/\0><\/\1><[\w\W]+> for ( ; i < l; i++ ) {
3083 <([a-z][^\/\0><\/\1><[\w\W]+> if ( jQuery.contains( this, targets[ i ] ) ) {
3084 <([a-z][^\/\0><\/\1><[\w\W]+> return true;
3085 <([a-z][^\/\0><\/\1><[\w\W]+> }
3086 <([a-z][^\/\0><\/\1><[\w\W]+> }
3087 <([a-z][^\/\0><\/\1><[\w\W]+> } );
3088 <([a-z][^\/\0><\/\1><[\w\W]+> },
3089  
3090 <([a-z][^\/\0><\/\1><[\w\W]+> closest: function( selectors, context ) {
3091 <([a-z][^\/\0><\/\1><[\w\W]+> var cur,
3092 <([a-z][^\/\0><\/\1><[\w\W]+> i = 0,
3093 <([a-z][^\/\0><\/\1><[\w\W]+> l = this.length,
3094 <([a-z][^\/\0><\/\1><[\w\W]+> matched = [],
3095 <([a-z][^\/\0><\/\1><[\w\W]+> targets = typeof selectors !== "string" && jQuery( selectors );
3096  
3097 <([a-z][^\/\0><\/\1><[\w\W]+> // Positional selectors never match, since there's no _selection_ context
3098 <([a-z][^\/\0><\/\1><[\w\W]+> if ( !rneedsContext.test( selectors ) ) {
3099 <([a-z][^\/\0><\/\1><[\w\W]+> for ( ; i < l; i++ ) {
3100 <([a-z][^\/\0><\/\1><[\w\W]+> for ( cur = this[ i ]; cur && cur !== context; cur = cur.parentNode ) {
3101  
3102 <([a-z][^\/\0><\/\1><[\w\W]+> // Always skip document fragments
3103 <([a-z][^\/\0><\/\1><[\w\W]+> if ( cur.nodeType < 11 && ( targets ?
3104 <([a-z][^\/\0><\/\1><[\w\W]+> targets.index( cur ) > -1 :
3105  
3106 <([a-z][^\/\0><\/\1><[\w\W]+> // Don't pass non-elements to Sizzle
3107 <([a-z][^\/\0><\/\1><[\w\W]+> cur.nodeType === 1 &&
3108 <([a-z][^\/\0><\/\1><[\w\W]+> jQuery.find.matchesSelector( cur, selectors ) ) ) {
3109  
3110 <([a-z][^\/\0><\/\1><[\w\W]+> matched.push( cur );
3111 <([a-z][^\/\0><\/\1><[\w\W]+> break;
3112 <([a-z][^\/\0><\/\1><[\w\W]+> }
3113 <([a-z][^\/\0><\/\1><[\w\W]+> }
3114 <([a-z][^\/\0><\/\1><[\w\W]+> }
3115 <([a-z][^\/\0><\/\1><[\w\W]+> }
3116  
3117 <([a-z][^\/\0><\/\1><[\w\W]+> return this.pushStack( matched.length > 1 ? jQuery.uniqueSort( matched ) : matched );
3118 <([a-z][^\/\0><\/\1><[\w\W]+> },
3119  
3120 <([a-z][^\/\0><\/\1><[\w\W]+> // Determine the position of an element within the set
3121 <([a-z][^\/\0><\/\1><[\w\W]+> index: function( elem ) {
3122  
3123 <([a-z][^\/\0><\/\1><[\w\W]+> // No argument, return index in parent
3124 <([a-z][^\/\0><\/\1><[\w\W]+> if ( !elem ) {
3125 <([a-z][^\/\0><\/\1><[\w\W]+> return ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1;
3126 <([a-z][^\/\0><\/\1><[\w\W]+> }
3127  
3128 <([a-z][^\/\0><\/\1><[\w\W]+> // Index in selector
3129 <([a-z][^\/\0><\/\1><[\w\W]+> if ( typeof elem === "string" ) {
3130 <([a-z][^\/\0><\/\1><[\w\W]+> return indexOf.call( jQuery( elem ), this[ 0 ] );
3131 <([a-z][^\/\0><\/\1><[\w\W]+> }
3132  
3133 <([a-z][^\/\0><\/\1><[\w\W]+> // Locate the position of the desired element
3134 <([a-z][^\/\0><\/\1><[\w\W]+> return indexOf.call( this,
3135  
3136 <([a-z][^\/\0><\/\1><[\w\W]+> // If it receives a jQuery object, the first element is used
3137 <([a-z][^\/\0><\/\1><[\w\W]+> elem.jquery ? elem[ 0 ] : elem
3138 <([a-z][^\/\0><\/\1><[\w\W]+> );
3139 <([a-z][^\/\0><\/\1><[\w\W]+> },
3140  
3141 <([a-z][^\/\0><\/\1><[\w\W]+> add: function( selector, context ) {
3142 <([a-z][^\/\0><\/\1><[\w\W]+> return this.pushStack(
3143 <([a-z][^\/\0><\/\1><[\w\W]+> jQuery.uniqueSort(
3144 <([a-z][^\/\0><\/\1><[\w\W]+> jQuery.merge( this.get(), jQuery( selector, context ) )
3145 <([a-z][^\/\0><\/\1><[\w\W]+> )
3146 <([a-z][^\/\0><\/\1><[\w\W]+> );
3147 <([a-z][^\/\0><\/\1><[\w\W]+> },
3148  
3149 <([a-z][^\/\0><\/\1><[\w\W]+> addBack: function( selector ) {
3150 <([a-z][^\/\0><\/\1><[\w\W]+> return this.add( selector == null ?
3151 <([a-z][^\/\0><\/\1><[\w\W]+> this.prevObject : this.prevObject.filter( selector )
3152 <([a-z][^\/\0><\/\1><[\w\W]+> );
3153 <([a-z][^\/\0><\/\1><[\w\W]+> }
3154 <([a-z][^\/\0><\/\1><[\w\W]+>} );
3155  
3156 <([a-z][^\/\0><\/\1><[\w\W]+>function sibling( cur, dir ) {
3157 <([a-z][^\/\0><\/\1><[\w\W]+> while ( ( cur = cur[ dir ] ) && cur.nodeType !== 1 ) {}
3158 <([a-z][^\/\0><\/\1><[\w\W]+> return cur;
3159 <([a-z][^\/\0><\/\1><[\w\W]+>}
3160  
3161 <([a-z][^\/\0><\/\1><[\w\W]+>jQuery.each( {
3162 <([a-z][^\/\0><\/\1><[\w\W]+> parent: function( elem ) {
3163 <([a-z][^\/\0><\/\1><[\w\W]+> var parent = elem.parentNode;
3164 <([a-z][^\/\0><\/\1><[\w\W]+> return parent && parent.nodeType !== 11 ? parent : null;
3165 <([a-z][^\/\0><\/\1><[\w\W]+> },
3166 <([a-z][^\/\0><\/\1><[\w\W]+> parents: function( elem ) {
3167 <([a-z][^\/\0><\/\1><[\w\W]+> return dir( elem, "parentNode" );
3168 <([a-z][^\/\0><\/\1><[\w\W]+> },
3169 <([a-z][^\/\0><\/\1><[\w\W]+> parentsUntil: function( elem, i, until ) {
3170 <([a-z][^\/\0><\/\1><[\w\W]+> return dir( elem, "parentNode", until );
3171 <([a-z][^\/\0><\/\1><[\w\W]+> },
3172 <([a-z][^\/\0><\/\1><[\w\W]+> next: function( elem ) {
3173 <([a-z][^\/\0><\/\1><[\w\W]+> return sibling( elem, "nextSibling" );
3174 <([a-z][^\/\0><\/\1><[\w\W]+> },
3175 <([a-z][^\/\0><\/\1><[\w\W]+> prev: function( elem ) {
3176 <([a-z][^\/\0><\/\1><[\w\W]+> return sibling( elem, "previousSibling" );
3177 <([a-z][^\/\0><\/\1><[\w\W]+> },
3178 <([a-z][^\/\0><\/\1><[\w\W]+> nextAll: function( elem ) {
3179 <([a-z][^\/\0><\/\1><[\w\W]+> return dir( elem, "nextSibling" );
3180 <([a-z][^\/\0><\/\1><[\w\W]+> },
3181 <([a-z][^\/\0><\/\1><[\w\W]+> prevAll: function( elem ) {
3182 <([a-z][^\/\0><\/\1><[\w\W]+> return dir( elem, "previousSibling" );
3183 <([a-z][^\/\0><\/\1><[\w\W]+> },
3184 <([a-z][^\/\0><\/\1><[\w\W]+> nextUntil: function( elem, i, until ) {
3185 <([a-z][^\/\0><\/\1><[\w\W]+> return dir( elem, "nextSibling", until );
3186 <([a-z][^\/\0><\/\1><[\w\W]+> },
3187 <([a-z][^\/\0><\/\1><[\w\W]+> prevUntil: function( elem, i, until ) {
3188 <([a-z][^\/\0><\/\1><[\w\W]+> return dir( elem, "previousSibling", until );
3189 <([a-z][^\/\0><\/\1><[\w\W]+> },
3190 <([a-z][^\/\0><\/\1><[\w\W]+> siblings: function( elem ) {
3191 <([a-z][^\/\0><\/\1><[\w\W]+> return siblings( ( elem.parentNode || {} ).firstChild, elem );
3192 <([a-z][^\/\0><\/\1><[\w\W]+> },
3193 <([a-z][^\/\0><\/\1><[\w\W]+> children: function( elem ) {
3194 <([a-z][^\/\0><\/\1><[\w\W]+> return siblings( elem.firstChild );
3195 <([a-z][^\/\0><\/\1><[\w\W]+> },
3196 <([a-z][^\/\0><\/\1><[\w\W]+> contents: function( elem ) {
3197 <([a-z][^\/\0><\/\1><[\w\W]+> return elem.contentDocument || jQuery.merge( [], elem.childNodes );
3198 <([a-z][^\/\0><\/\1><[\w\W]+> }
3199 <([a-z][^\/\0><\/\1><[\w\W]+>}, function( name, fn ) {
3200 <([a-z][^\/\0><\/\1><[\w\W]+> jQuery.fn[ name ] = function( until, selector ) {
3201 <([a-z][^\/\0><\/\1><[\w\W]+> var matched = jQuery.map( this, fn, until );
3202  
3203 <([a-z][^\/\0><\/\1><[\w\W]+> if ( name.slice( -5 ) !== "Until" ) {
3204 <([a-z][^\/\0><\/\1><[\w\W]+> selector = until;
3205 <([a-z][^\/\0><\/\1><[\w\W]+> }
3206  
3207 <([a-z][^\/\0><\/\1><[\w\W]+> if ( selector && typeof selector === "string" ) {
3208 <([a-z][^\/\0><\/\1><[\w\W]+> matched = jQuery.filter( selector, matched );
3209 <([a-z][^\/\0><\/\1><[\w\W]+> }
3210  
3211 <([a-z][^\/\0><\/\1><[\w\W]+> if ( this.length > 1 ) {
3212  
3213 <([a-z][^\/\0><\/\1><[\w\W]+> // Remove duplicates
3214 <([a-z][^\/\0><\/\1><[\w\W]+> if ( !guaranteedUnique[ name ] ) {
3215 <([a-z][^\/\0><\/\1><[\w\W]+> jQuery.uniqueSort( matched );
3216 <([a-z][^\/\0><\/\1><[\w\W]+> }
3217  
3218 <([a-z][^\/\0><\/\1><[\w\W]+> // Reverse order for parents* and prev-derivatives
3219 <([a-z][^\/\0><\/\1><[\w\W]+> if ( rparentsprev.test( name ) ) {
3220 <([a-z][^\/\0><\/\1><[\w\W]+> matched.reverse();
3221 <([a-z][^\/\0><\/\1><[\w\W]+> }
3222 <([a-z][^\/\0><\/\1><[\w\W]+> }
3223  
3224 <([a-z][^\/\0><\/\1><[\w\W]+> return this.pushStack( matched );
3225 <([a-z][^\/\0><\/\1><[\w\W]+> };
3226 <([a-z][^\/\0><\/\1><[\w\W]+>} );
3227 <([a-z][^\/\0><\/\1><[\w\W]+>var rnothtmlwhite = ( /[^\x20\t\r\n\f]+/g );
3228  
3229  
3230  
3231 <([a-z][^\/\0><\/\1><[\w\W]+>// Convert String-formatted options into Object-formatted ones
3232 <([a-z][^\/\0><\/\1><[\w\W]+>function createOptions( options ) {
3233 <([a-z][^\/\0><\/\1><[\w\W]+> var object = {};
3234 <([a-z][^\/\0><\/\1><[\w\W]+> jQuery.each( options.match( rnothtmlwhite ) || [], function( _, flag ) {
3235 <([a-z][^\/\0><\/\1><[\w\W]+> object[ flag ] = true;
3236 <([a-z][^\/\0><\/\1><[\w\W]+> } );
3237 <([a-z][^\/\0><\/\1><[\w\W]+> return object;
3238 <([a-z][^\/\0><\/\1><[\w\W]+>}
3239  
3240 <([a-z][^\/\0><\/\1><[\w\W]+>/*
3241 <([a-z][^\/\0><\/\1><[\w\W]+> * Create a callback list using the following parameters:
3242 <([a-z][^\/\0><\/\1><[\w\W]+> *
3243 <([a-z][^\/\0><\/\1><[\w\W]+> * options: an optional list of space-separated options that will change how
3244 <([a-z][^\/\0><\/\1><[\w\W]+> * the callback list behaves or a more traditional option object
3245 <([a-z][^\/\0><\/\1><[\w\W]+> *
3246 <([a-z][^\/\0><\/\1><[\w\W]+> * By default a callback list will act like an event callback list and can be
3247 <([a-z][^\/\0><\/\1><[\w\W]+> * "fired" multiple times.
3248 <([a-z][^\/\0><\/\1><[\w\W]+> *
3249 <([a-z][^\/\0><\/\1><[\w\W]+> * Possible options:
3250 <([a-z][^\/\0><\/\1><[\w\W]+> *
3251 <([a-z][^\/\0><\/\1><[\w\W]+> * once: will ensure the callback list can only be fired once (like a Deferred)
3252 <([a-z][^\/\0><\/\1><[\w\W]+> *
3253 <([a-z][^\/\0><\/\1><[\w\W]+> * memory: will keep track of previous values and will call any callback added
3254 <([a-z][^\/\0><\/\1><[\w\W]+> * after the list has been fired right away with the latest "memorized"
3255 <([a-z][^\/\0><\/\1><[\w\W]+> * values (like a Deferred)
3256 <([a-z][^\/\0><\/\1><[\w\W]+> *
3257 <([a-z][^\/\0><\/\1><[\w\W]+> * unique: will ensure a callback can only be added once (no duplicate in the list)
3258 <([a-z][^\/\0><\/\1><[\w\W]+> *
3259 <([a-z][^\/\0><\/\1><[\w\W]+> * stopOnFalse: interrupt callings when a callback returns false
3260 <([a-z][^\/\0><\/\1><[\w\W]+> *
3261 <([a-z][^\/\0><\/\1><[\w\W]+> */
3262 <([a-z][^\/\0><\/\1><[\w\W]+>jQuery.Callbacks = function( options ) {
3263  
3264 <([a-z][^\/\0><\/\1><[\w\W]+> // Convert options from String-formatted to Object-formatted if needed
3265 <([a-z][^\/\0><\/\1><[\w\W]+> // (we check in cache first)
3266 <([a-z][^\/\0><\/\1><[\w\W]+> options = typeof options === "string" ?
3267 <([a-z][^\/\0><\/\1><[\w\W]+> createOptions( options ) :
3268 <([a-z][^\/\0><\/\1><[\w\W]+> jQuery.extend( {}, options );
3269  
3270 <([a-z][^\/\0><\/\1><[\w\W]+> var // Flag to know if list is currently firing
3271 <([a-z][^\/\0><\/\1><[\w\W]+> firing,
3272  
3273 <([a-z][^\/\0><\/\1><[\w\W]+> // Last fire value for non-forgettable lists
3274 <([a-z][^\/\0><\/\1><[\w\W]+> memory,
3275  
3276 <([a-z][^\/\0><\/\1><[\w\W]+> // Flag to know if list was already fired
3277 <([a-z][^\/\0><\/\1><[\w\W]+> fired,
3278  
3279 <([a-z][^\/\0><\/\1><[\w\W]+> // Flag to prevent firing
3280 <([a-z][^\/\0><\/\1><[\w\W]+> locked,
3281  
3282 <([a-z][^\/\0><\/\1><[\w\W]+> // Actual callback list
3283 <([a-z][^\/\0><\/\1><[\w\W]+> list = [],
3284  
3285 <([a-z][^\/\0><\/\1><[\w\W]+> // Queue of execution data for repeatable lists
3286 <([a-z][^\/\0><\/\1><[\w\W]+> queue = [],
3287  
3288 <([a-z][^\/\0><\/\1><[\w\W]+> // Index of currently firing callback (modified by add/remove as needed)
3289 <([a-z][^\/\0><\/\1><[\w\W]+> firingIndex = -1,
3290  
3291 <([a-z][^\/\0><\/\1><[\w\W]+> // Fire callbacks
3292 <([a-z][^\/\0><\/\1><[\w\W]+> fire = function() {
3293  
3294 <([a-z][^\/\0><\/\1><[\w\W]+> // Enforce single-firing
3295 <([a-z][^\/\0><\/\1><[\w\W]+> locked = options.once;
3296  
3297 <([a-z][^\/\0><\/\1><[\w\W]+> // Execute callbacks for all pending executions,
3298 <([a-z][^\/\0><\/\1><[\w\W]+> // respecting firingIndex overrides and runtime changes
3299 <([a-z][^\/\0><\/\1><[\w\W]+> fired = firing = true;
3300 <([a-z][^\/\0><\/\1><[\w\W]+> for ( ; queue.length; firingIndex = -1 ) {
3301 <([a-z][^\/\0><\/\1><[\w\W]+> memory = queue.shift();
3302 <([a-z][^\/\0><\/\1><[\w\W]+> while ( ++firingIndex < list.length ) {
3303  
3304 <([a-z][^\/\0><\/\1><[\w\W]+> // Run callback and check for early termination
3305 <([a-z][^\/\0><\/\1><[\w\W]+> if ( list[ firingIndex ].apply( memory[ 0 ], memory[ 1 ] ) === false &&
3306 <([a-z][^\/\0><\/\1><[\w\W]+> options.stopOnFalse ) {
3307  
3308 <([a-z][^\/\0><\/\1><[\w\W]+> // Jump to end and forget the data so .add doesn't re-fire
3309 <([a-z][^\/\0><\/\1><[\w\W]+> firingIndex = list.length;
3310 <([a-z][^\/\0><\/\1><[\w\W]+> memory = false;
3311 <([a-z][^\/\0><\/\1><[\w\W]+> }
3312 <([a-z][^\/\0><\/\1><[\w\W]+> }
3313 <([a-z][^\/\0><\/\1><[\w\W]+> }
3314  
3315 <([a-z][^\/\0><\/\1><[\w\W]+> // Forget the data if we're done with it
3316 <([a-z][^\/\0><\/\1><[\w\W]+> if ( !options.memory ) {
3317 <([a-z][^\/\0><\/\1><[\w\W]+> memory = false;
3318 <([a-z][^\/\0><\/\1><[\w\W]+> }
3319  
3320 <([a-z][^\/\0><\/\1><[\w\W]+> firing = false;
3321  
3322 <([a-z][^\/\0><\/\1><[\w\W]+> // Clean up if we're done firing for good
3323 <([a-z][^\/\0><\/\1><[\w\W]+> if ( locked ) {
3324  
3325 <([a-z][^\/\0><\/\1><[\w\W]+> // Keep an empty list if we have data for future add calls
3326 <([a-z][^\/\0><\/\1><[\w\W]+> if ( memory ) {
3327 <([a-z][^\/\0><\/\1><[\w\W]+> list = [];
3328  
3329 <([a-z][^\/\0><\/\1><[\w\W]+> // Otherwise, this object is spent
3330 <([a-z][^\/\0><\/\1><[\w\W]+> } else {
3331 <([a-z][^\/\0><\/\1><[\w\W]+> list = "";
3332 <([a-z][^\/\0><\/\1><[\w\W]+> }
3333 <([a-z][^\/\0><\/\1><[\w\W]+> }
3334 <([a-z][^\/\0><\/\1><[\w\W]+> },
3335  
3336 <([a-z][^\/\0><\/\1><[\w\W]+> // Actual Callbacks object
3337 <([a-z][^\/\0><\/\1><[\w\W]+> self = {
3338  
3339 <([a-z][^\/\0><\/\1><[\w\W]+> // Add a callback or a collection of callbacks to the list
3340 <([a-z][^\/\0><\/\1><[\w\W]+> add: function() {
3341 <([a-z][^\/\0><\/\1><[\w\W]+> if ( list ) {
3342  
3343 <([a-z][^\/\0><\/\1><[\w\W]+> // If we have memory from a past run, we should fire after adding
3344 <([a-z][^\/\0><\/\1><[\w\W]+> if ( memory && !firing ) {
3345 <([a-z][^\/\0><\/\1><[\w\W]+> firingIndex = list.length - 1;
3346 <([a-z][^\/\0><\/\1><[\w\W]+> queue.push( memory );
3347 <([a-z][^\/\0><\/\1><[\w\W]+> }
3348  
3349 <([a-z][^\/\0><\/\1><[\w\W]+> ( function add( args ) {
3350 <([a-z][^\/\0><\/\1><[\w\W]+> jQuery.each( args, function( _, arg ) {
3351 <([a-z][^\/\0><\/\1><[\w\W]+> if ( jQuery.isFunction( arg ) ) {
3352 <([a-z][^\/\0><\/\1><[\w\W]+> if ( !options.unique || !self.has( arg ) ) {
3353 <([a-z][^\/\0><\/\1><[\w\W]+> list.push( arg );
3354 <([a-z][^\/\0><\/\1><[\w\W]+> }
3355 <([a-z][^\/\0><\/\1><[\w\W]+> } else if ( arg && arg.length && jQuery.type( arg ) !== "string" ) {
3356  
3357 <([a-z][^\/\0><\/\1><[\w\W]+> // Inspect recursively
3358 <([a-z][^\/\0><\/\1><[\w\W]+> add( arg );
3359 <([a-z][^\/\0><\/\1><[\w\W]+> }
3360 <([a-z][^\/\0><\/\1><[\w\W]+> } );
3361 <([a-z][^\/\0><\/\1><[\w\W]+> } )( arguments );
3362  
3363 <([a-z][^\/\0><\/\1><[\w\W]+> if ( memory && !firing ) {
3364 <([a-z][^\/\0><\/\1><[\w\W]+> fire();
3365 <([a-z][^\/\0><\/\1><[\w\W]+> }
3366 <([a-z][^\/\0><\/\1><[\w\W]+> }
3367 <([a-z][^\/\0><\/\1><[\w\W]+> return this;
3368 <([a-z][^\/\0><\/\1><[\w\W]+> },
3369  
3370 <([a-z][^\/\0><\/\1><[\w\W]+> // Remove a callback from the list
3371 <([a-z][^\/\0><\/\1><[\w\W]+> remove: function() {
3372 <([a-z][^\/\0><\/\1><[\w\W]+> jQuery.each( arguments, function( _, arg ) {
3373 <([a-z][^\/\0><\/\1><[\w\W]+> var index;
3374 <([a-z][^\/\0><\/\1><[\w\W]+> while ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) {
3375 <([a-z][^\/\0><\/\1><[\w\W]+> list.splice( index, 1 );
3376  
3377 <([a-z][^\/\0><\/\1><[\w\W]+> // Handle firing indexes
3378 <([a-z][^\/\0><\/\1><[\w\W]+> if ( index <= firingIndex ) {
3379 <([a-z][^\/\0><\/\1><[\w\W]+> firingIndex--;
3380 <([a-z][^\/\0><\/\1><[\w\W]+> }
3381 <([a-z][^\/\0><\/\1><[\w\W]+> }
3382 <([a-z][^\/\0><\/\1><[\w\W]+> } );
3383 <([a-z][^\/\0><\/\1><[\w\W]+> return this;
3384 <([a-z][^\/\0><\/\1><[\w\W]+> },
3385  
3386 <([a-z][^\/\0><\/\1><[\w\W]+> // Check if a given callback is in the list.
3387 <([a-z][^\/\0><\/\1><[\w\W]+> // If no argument is given, return whether or not list has callbacks attached.
3388 <([a-z][^\/\0><\/\1><[\w\W]+> has: function( fn ) {
3389 <([a-z][^\/\0><\/\1><[\w\W]+> return fn ?
3390 <([a-z][^\/\0><\/\1><[\w\W]+> jQuery.inArray( fn, list ) > -1 :
3391 <([a-z][^\/\0><\/\1><[\w\W]+> list.length > 0;
3392 <([a-z][^\/\0><\/\1><[\w\W]+> },
3393  
3394 <([a-z][^\/\0><\/\1><[\w\W]+> // Remove all callbacks from the list
3395 <([a-z][^\/\0><\/\1><[\w\W]+> empty: function() {
3396 <([a-z][^\/\0><\/\1><[\w\W]+> if ( list ) {
3397 <([a-z][^\/\0><\/\1><[\w\W]+> list = [];
3398 <([a-z][^\/\0><\/\1><[\w\W]+> }
3399 <([a-z][^\/\0><\/\1><[\w\W]+> return this;
3400 <([a-z][^\/\0><\/\1><[\w\W]+> },
3401  
3402 <([a-z][^\/\0><\/\1><[\w\W]+> // Disable .fire and .add
3403 <([a-z][^\/\0><\/\1><[\w\W]+> // Abort any current/pending executions
3404 <([a-z][^\/\0><\/\1><[\w\W]+> // Clear all callbacks and values
3405 <([a-z][^\/\0><\/\1><[\w\W]+> disable: function() {
3406 <([a-z][^\/\0><\/\1><[\w\W]+> locked = queue = [];
3407 <([a-z][^\/\0><\/\1><[\w\W]+> list = memory = "";
3408 <([a-z][^\/\0><\/\1><[\w\W]+> return this;
3409 <([a-z][^\/\0><\/\1><[\w\W]+> },
3410 <([a-z][^\/\0><\/\1><[\w\W]+> disabled: function() {
3411 <([a-z][^\/\0><\/\1><[\w\W]+> return !list;
3412 <([a-z][^\/\0><\/\1><[\w\W]+> },
3413  
3414 <([a-z][^\/\0><\/\1><[\w\W]+> // Disable .fire
3415 <([a-z][^\/\0><\/\1><[\w\W]+> // Also disable .add unless we have memory (since it would have no effect)
3416 <([a-z][^\/\0><\/\1><[\w\W]+> // Abort any pending executions
3417 <([a-z][^\/\0><\/\1><[\w\W]+> lock: function() {
3418 <([a-z][^\/\0><\/\1><[\w\W]+> locked = queue = [];
3419 <([a-z][^\/\0><\/\1><[\w\W]+> if ( !memory && !firing ) {
3420 <([a-z][^\/\0><\/\1><[\w\W]+> list = memory = "";
3421 <([a-z][^\/\0><\/\1><[\w\W]+> }
3422 <([a-z][^\/\0><\/\1><[\w\W]+> return this;
3423 <([a-z][^\/\0><\/\1><[\w\W]+> },
3424 <([a-z][^\/\0><\/\1><[\w\W]+> locked: function() {
3425 <([a-z][^\/\0><\/\1><[\w\W]+> return !!locked;
3426 <([a-z][^\/\0><\/\1><[\w\W]+> },
3427  
3428 <([a-z][^\/\0><\/\1><[\w\W]+> // Call all callbacks with the given context and arguments
3429 <([a-z][^\/\0><\/\1><[\w\W]+> fireWith: function( context, args ) {
3430 <([a-z][^\/\0><\/\1><[\w\W]+> if ( !locked ) {
3431 <([a-z][^\/\0><\/\1><[\w\W]+> args = args || [];
3432 <([a-z][^\/\0><\/\1><[\w\W]+> args = [ context, args.slice ? args.slice() : args ];
3433 <([a-z][^\/\0><\/\1><[\w\W]+> queue.push( args );
3434 <([a-z][^\/\0><\/\1><[\w\W]+> if ( !firing ) {
3435 <([a-z][^\/\0><\/\1><[\w\W]+> fire();
3436 <([a-z][^\/\0><\/\1><[\w\W]+> }
3437 <([a-z][^\/\0><\/\1><[\w\W]+> }
3438 <([a-z][^\/\0><\/\1><[\w\W]+> return this;
3439 <([a-z][^\/\0><\/\1><[\w\W]+> },
3440  
3441 <([a-z][^\/\0><\/\1><[\w\W]+> // Call all the callbacks with the given arguments
3442 <([a-z][^\/\0><\/\1><[\w\W]+> fire: function() {
3443 <([a-z][^\/\0><\/\1><[\w\W]+> self.fireWith( this, arguments );
3444 <([a-z][^\/\0><\/\1><[\w\W]+> return this;
3445 <([a-z][^\/\0><\/\1><[\w\W]+> },
3446  
3447 <([a-z][^\/\0><\/\1><[\w\W]+> // To know if the callbacks have already been called at least once
3448 <([a-z][^\/\0><\/\1><[\w\W]+> fired: function() {
3449 <([a-z][^\/\0><\/\1><[\w\W]+> return !!fired;
3450 <([a-z][^\/\0><\/\1><[\w\W]+> }
3451 <([a-z][^\/\0><\/\1><[\w\W]+> };
3452  
3453 <([a-z][^\/\0><\/\1><[\w\W]+> return self;
3454 <([a-z][^\/\0><\/\1><[\w\W]+>};
3455  
3456  
3457 <([a-z][^\/\0><\/\1><[\w\W]+>function Identity( v ) {
3458 <([a-z][^\/\0><\/\1><[\w\W]+> return v;
3459 <([a-z][^\/\0><\/\1><[\w\W]+>}
3460 <([a-z][^\/\0><\/\1><[\w\W]+>function Thrower( ex ) {
3461 <([a-z][^\/\0><\/\1><[\w\W]+> throw ex;
3462 <([a-z][^\/\0><\/\1><[\w\W]+>}
3463  
3464 <([a-z][^\/\0><\/\1><[\w\W]+>function adoptValue( value, resolve, reject ) {
3465 <([a-z][^\/\0><\/\1><[\w\W]+> var method;
3466  
3467 <([a-z][^\/\0><\/\1><[\w\W]+> try {
3468  
3469 <([a-z][^\/\0><\/\1><[\w\W]+> // Check for promise aspect first to privilege synchronous behavior
3470 <([a-z][^\/\0><\/\1><[\w\W]+> if ( value && jQuery.isFunction( ( method = value.promise ) ) ) {
3471 <([a-z][^\/\0><\/\1><[\w\W]+> method.call( value ).done( resolve ).fail( reject );
3472  
3473 <([a-z][^\/\0><\/\1><[\w\W]+> // Other thenables
3474 <([a-z][^\/\0><\/\1><[\w\W]+> } else if ( value && jQuery.isFunction( ( method = value.then ) ) ) {
3475 <([a-z][^\/\0><\/\1><[\w\W]+> method.call( value, resolve, reject );
3476  
3477 <([a-z][^\/\0><\/\1><[\w\W]+> // Other non-thenables
3478 <([a-z][^\/\0><\/\1><[\w\W]+> } else {
3479  
3480 <([a-z][^\/\0><\/\1><[\w\W]+> // Support: Android 4.0 only
3481 <([a-z][^\/\0><\/\1><[\w\W]+> // Strict mode functions invoked without .call/.apply get global-object context
3482 <([a-z][^\/\0><\/\1><[\w\W]+> resolve.call( undefined, value );
3483 <([a-z][^\/\0><\/\1><[\w\W]+> }
3484  
3485 <([a-z][^\/\0><\/\1><[\w\W]+> // For Promises/A+, convert exceptions into rejections
3486 <([a-z][^\/\0><\/\1><[\w\W]+> // Since jQuery.when doesn't unwrap thenables, we can skip the extra checks appearing in
3487 <([a-z][^\/\0><\/\1><[\w\W]+> // Deferred#then to conditionally suppress rejection.
3488 <([a-z][^\/\0><\/\1><[\w\W]+> } catch ( value ) {
3489  
3490 <([a-z][^\/\0><\/\1><[\w\W]+> // Support: Android 4.0 only
3491 <([a-z][^\/\0><\/\1><[\w\W]+> // Strict mode functions invoked without .call/.apply get global-object context
3492 <([a-z][^\/\0><\/\1><[\w\W]+> reject.call( undefined, value );
3493 <([a-z][^\/\0><\/\1><[\w\W]+> }
3494 <([a-z][^\/\0><\/\1><[\w\W]+>}
3495  
3496 <([a-z][^\/\0><\/\1><[\w\W]+>jQuery.extend( {
3497  
3498 <([a-z][^\/\0><\/\1><[\w\W]+> Deferred: function( func ) {
3499 <([a-z][^\/\0><\/\1><[\w\W]+> var tuples = [
3500  
3501 <([a-z][^\/\0><\/\1><[\w\W]+> // action, add listener, callbacks,
3502 <([a-z][^\/\0><\/\1><[\w\W]+> // ... .then handlers, argument index, [final state]
3503 <([a-z][^\/\0><\/\1><[\w\W]+> [ "notify", "progress", jQuery.Callbacks( "memory" ),
3504 <([a-z][^\/\0><\/\1><[\w\W]+> jQuery.Callbacks( "memory" ), 2 ],
3505 <([a-z][^\/\0><\/\1><[\w\W]+> [ "resolve", "done", jQuery.Callbacks( "once memory" ),
3506 <([a-z][^\/\0><\/\1><[\w\W]+> jQuery.Callbacks( "once memory" ), 0, "resolved" ],
3507 <([a-z][^\/\0><\/\1><[\w\W]+> [ "reject", "fail", jQuery.Callbacks( "once memory" ),
3508 <([a-z][^\/\0><\/\1><[\w\W]+> jQuery.Callbacks( "once memory" ), 1, "rejected" ]
3509 <([a-z][^\/\0><\/\1><[\w\W]+> ],
3510 <([a-z][^\/\0><\/\1><[\w\W]+> state = "pending",
3511 <([a-z][^\/\0><\/\1><[\w\W]+> promise = {
3512 <([a-z][^\/\0><\/\1><[\w\W]+> state: function() {
3513 <([a-z][^\/\0><\/\1><[\w\W]+> return state;
3514 <([a-z][^\/\0><\/\1><[\w\W]+> },
3515 <([a-z][^\/\0><\/\1><[\w\W]+> always: function() {
3516 <([a-z][^\/\0><\/\1><[\w\W]+> deferred.done( arguments ).fail( arguments );
3517 <([a-z][^\/\0><\/\1><[\w\W]+> return this;
3518 <([a-z][^\/\0><\/\1><[\w\W]+> },
3519 <([a-z][^\/\0><\/\1><[\w\W]+> "catch": function( fn ) {
3520 <([a-z][^\/\0><\/\1><[\w\W]+> return promise.then( null, fn );
3521 <([a-z][^\/\0><\/\1><[\w\W]+> },
3522  
3523 <([a-z][^\/\0><\/\1><[\w\W]+> // Keep pipe for back-compat
3524 <([a-z][^\/\0><\/\1><[\w\W]+> pipe: function( /* fnDone, fnFail, fnProgress */ ) {
3525 <([a-z][^\/\0><\/\1><[\w\W]+> var fns = arguments;
3526  
3527 <([a-z][^\/\0><\/\1><[\w\W]+> return jQuery.Deferred( function( newDefer ) {
3528 <([a-z][^\/\0><\/\1><[\w\W]+> jQuery.each( tuples, function( i, tuple ) {
3529  
3530 <([a-z][^\/\0><\/\1><[\w\W]+> // Map tuples (progress, done, fail) to arguments (done, fail, progress)
3531 <([a-z][^\/\0><\/\1><[\w\W]+> var fn = jQuery.isFunction( fns[ tuple[ 4 ] ] ) && fns[ tuple[ 4 ] ];
3532  
3533 <([a-z][^\/\0><\/\1><[\w\W]+> // deferred.progress(function() { bind to newDefer or newDefer.notify })
3534 <([a-z][^\/\0><\/\1><[\w\W]+> // deferred.done(function() { bind to newDefer or newDefer.resolve })
3535 <([a-z][^\/\0><\/\1><[\w\W]+> // deferred.fail(function() { bind to newDefer or newDefer.reject })
3536 <([a-z][^\/\0><\/\1><[\w\W]+> deferred[ tuple[ 1 ] ]( function() {
3537 <([a-z][^\/\0><\/\1><[\w\W]+> var returned = fn && fn.apply( this, arguments );
3538 <([a-z][^\/\0><\/\1><[\w\W]+> if ( returned && jQuery.isFunction( returned.promise ) ) {
3539 <([a-z][^\/\0><\/\1><[\w\W]+> returned.promise()
3540 <([a-z][^\/\0><\/\1><[\w\W]+> .progress( newDefer.notify )
3541 <([a-z][^\/\0><\/\1><[\w\W]+> .done( newDefer.resolve )
3542 <([a-z][^\/\0><\/\1><[\w\W]+> .fail( newDefer.reject );
3543 <([a-z][^\/\0><\/\1><[\w\W]+> } else {
3544 <([a-z][^\/\0><\/\1><[\w\W]+> newDefer[ tuple[ 0 ] + "With" ](
3545 <([a-z][^\/\0><\/\1><[\w\W]+> this,
3546 <([a-z][^\/\0><\/\1><[\w\W]+> fn ? [ returned ] : arguments
3547 <([a-z][^\/\0><\/\1><[\w\W]+> );
3548 <([a-z][^\/\0><\/\1><[\w\W]+> }
3549 <([a-z][^\/\0><\/\1><[\w\W]+> } );
3550 <([a-z][^\/\0><\/\1><[\w\W]+> } );
3551 <([a-z][^\/\0><\/\1><[\w\W]+> fns = null;
3552 <([a-z][^\/\0><\/\1><[\w\W]+> } ).promise();
3553 <([a-z][^\/\0><\/\1><[\w\W]+> },
3554 <([a-z][^\/\0><\/\1><[\w\W]+> then: function( onFulfilled, onRejected, onProgress ) {
3555 <([a-z][^\/\0><\/\1><[\w\W]+> var maxDepth = 0;
3556 <([a-z][^\/\0><\/\1><[\w\W]+> function resolve( depth, deferred, handler, special ) {
3557 <([a-z][^\/\0><\/\1><[\w\W]+> return function() {
3558 <([a-z][^\/\0><\/\1><[\w\W]+> var that = this,
3559 <([a-z][^\/\0><\/\1><[\w\W]+> args = arguments,
3560 <([a-z][^\/\0><\/\1><[\w\W]+> mightThrow = function() {
3561 <([a-z][^\/\0><\/\1><[\w\W]+> var returned, then;
3562  
3563 <([a-z][^\/\0><\/\1><[\w\W]+> // Support: Promises/A+ section 2.3.3.3.3
3564 <([a-z][^\/\0><\/\1><[\w\W]+> // https://promisesaplus.com/#point-59
3565 <([a-z][^\/\0><\/\1><[\w\W]+> // Ignore double-resolution attempts
3566 <([a-z][^\/\0><\/\1><[\w\W]+> if ( depth < maxDepth ) {
3567 <([a-z][^\/\0><\/\1><[\w\W]+> return;
3568 <([a-z][^\/\0><\/\1><[\w\W]+> }
3569  
3570 <([a-z][^\/\0><\/\1><[\w\W]+> returned = handler.apply( that, args );
3571  
3572 <([a-z][^\/\0><\/\1><[\w\W]+> // Support: Promises/A+ section 2.3.1
3573 <([a-z][^\/\0><\/\1><[\w\W]+> // https://promisesaplus.com/#point-48
3574 <([a-z][^\/\0><\/\1><[\w\W]+> if ( returned === deferred.promise() ) {
3575 <([a-z][^\/\0><\/\1><[\w\W]+> throw new TypeError( "Thenable self-resolution" );
3576 <([a-z][^\/\0><\/\1><[\w\W]+> }
3577  
3578 <([a-z][^\/\0><\/\1><[\w\W]+> // Support: Promises/A+ sections 2.3.3.1, 3.5
3579 <([a-z][^\/\0><\/\1><[\w\W]+> // https://promisesaplus.com/#point-54
3580 <([a-z][^\/\0><\/\1><[\w\W]+> // https://promisesaplus.com/#point-75
3581 <([a-z][^\/\0><\/\1><[\w\W]+> // Retrieve `then` only once
3582 <([a-z][^\/\0><\/\1><[\w\W]+> then = returned &&
3583  
3584 <([a-z][^\/\0><\/\1><[\w\W]+> // Support: Promises/A+ section 2.3.4
3585 <([a-z][^\/\0><\/\1><[\w\W]+> // https://promisesaplus.com/#point-64
3586 <([a-z][^\/\0><\/\1><[\w\W]+> // Only check objects and functions for thenability
3587 <([a-z][^\/\0><\/\1><[\w\W]+> ( typeof returned === "object" ||
3588 <([a-z][^\/\0><\/\1><[\w\W]+> typeof returned === "function" ) &&
3589 <([a-z][^\/\0><\/\1><[\w\W]+> returned.then;
3590  
3591 <([a-z][^\/\0><\/\1><[\w\W]+> // Handle a returned thenable
3592 <([a-z][^\/\0><\/\1><[\w\W]+> if ( jQuery.isFunction( then ) ) {
3593  
3594 <([a-z][^\/\0><\/\1><[\w\W]+> // Special processors (notify) just wait for resolution
3595 <([a-z][^\/\0><\/\1><[\w\W]+> if ( special ) {
3596 <([a-z][^\/\0><\/\1><[\w\W]+> then.call(
3597 <([a-z][^\/\0><\/\1><[\w\W]+> returned,
3598 <([a-z][^\/\0><\/\1><[\w\W]+> resolve( maxDepth, deferred, Identity, special ),
3599 <([a-z][^\/\0><\/\1><[\w\W]+> resolve( maxDepth, deferred, Thrower, special )
3600 <([a-z][^\/\0><\/\1><[\w\W]+> );
3601  
3602 <([a-z][^\/\0><\/\1><[\w\W]+> // Normal processors (resolve) also hook into progress
3603 <([a-z][^\/\0><\/\1><[\w\W]+> } else {
3604  
3605 <([a-z][^\/\0><\/\1><[\w\W]+> // ...and disregard older resolution values
3606 <([a-z][^\/\0><\/\1><[\w\W]+> maxDepth++;
3607  
3608 <([a-z][^\/\0><\/\1><[\w\W]+> then.call(
3609 <([a-z][^\/\0><\/\1><[\w\W]+> returned,
3610 <([a-z][^\/\0><\/\1><[\w\W]+> resolve( maxDepth, deferred, Identity, special ),
3611 <([a-z][^\/\0><\/\1><[\w\W]+> resolve( maxDepth, deferred, Thrower, special ),
3612 <([a-z][^\/\0><\/\1><[\w\W]+> resolve( maxDepth, deferred, Identity,
3613 <([a-z][^\/\0><\/\1><[\w\W]+> deferred.notifyWith )
3614 <([a-z][^\/\0><\/\1><[\w\W]+> );
3615 <([a-z][^\/\0><\/\1><[\w\W]+> }
3616  
3617 <([a-z][^\/\0><\/\1><[\w\W]+> // Handle all other returned values
3618 <([a-z][^\/\0><\/\1><[\w\W]+> } else {
3619  
3620 <([a-z][^\/\0><\/\1><[\w\W]+> // Only substitute handlers pass on context
3621 <([a-z][^\/\0><\/\1><[\w\W]+> // and multiple values (non-spec behavior)
3622 <([a-z][^\/\0><\/\1><[\w\W]+> if ( handler !== Identity ) {
3623 <([a-z][^\/\0><\/\1><[\w\W]+> that = undefined;
3624 <([a-z][^\/\0><\/\1><[\w\W]+> args = [ returned ];
3625 <([a-z][^\/\0><\/\1><[\w\W]+> }
3626  
3627 <([a-z][^\/\0><\/\1><[\w\W]+> // Process the value(s)
3628 <([a-z][^\/\0><\/\1><[\w\W]+> // Default process is resolve
3629 <([a-z][^\/\0><\/\1><[\w\W]+> ( special || deferred.resolveWith )( that, args );
3630 <([a-z][^\/\0><\/\1><[\w\W]+> }
3631 <([a-z][^\/\0><\/\1><[\w\W]+> },
3632  
3633 <([a-z][^\/\0><\/\1><[\w\W]+> // Only normal processors (resolve) catch and reject exceptions
3634 <([a-z][^\/\0><\/\1><[\w\W]+> process = special ?
3635 <([a-z][^\/\0><\/\1><[\w\W]+> mightThrow :
3636 <([a-z][^\/\0><\/\1><[\w\W]+> function() {
3637 <([a-z][^\/\0><\/\1><[\w\W]+> try {
3638 <([a-z][^\/\0><\/\1><[\w\W]+> mightThrow();
3639 <([a-z][^\/\0><\/\1><[\w\W]+> } catch ( e ) {
3640  
3641 <([a-z][^\/\0><\/\1><[\w\W]+> if ( jQuery.Deferred.exceptionHook ) {
3642 <([a-z][^\/\0><\/\1><[\w\W]+> jQuery.Deferred.exceptionHook( e,
3643 <([a-z][^\/\0><\/\1><[\w\W]+> process.stackTrace );
3644 <([a-z][^\/\0><\/\1><[\w\W]+> }
3645  
3646 <([a-z][^\/\0><\/\1><[\w\W]+> // Support: Promises/A+ section 2.3.3.3.4.1
3647 <([a-z][^\/\0><\/\1><[\w\W]+> // https://promisesaplus.com/#point-61
3648 <([a-z][^\/\0><\/\1><[\w\W]+> // Ignore post-resolution exceptions
3649 <([a-z][^\/\0><\/\1><[\w\W]+> if ( depth + 1 >= maxDepth ) {
3650  
3651 <([a-z][^\/\0><\/\1><[\w\W]+> // Only substitute handlers pass on context
3652 <([a-z][^\/\0><\/\1><[\w\W]+> // and multiple values (non-spec behavior)
3653 <([a-z][^\/\0><\/\1><[\w\W]+> if ( handler !== Thrower ) {
3654 <([a-z][^\/\0><\/\1><[\w\W]+> that = undefined;
3655 <([a-z][^\/\0><\/\1><[\w\W]+> args = [ e ];
3656 <([a-z][^\/\0><\/\1><[\w\W]+> }
3657  
3658 <([a-z][^\/\0><\/\1><[\w\W]+> deferred.rejectWith( that, args );
3659 <([a-z][^\/\0><\/\1><[\w\W]+> }
3660 <([a-z][^\/\0><\/\1><[\w\W]+> }
3661 <([a-z][^\/\0><\/\1><[\w\W]+> };
3662  
3663 <([a-z][^\/\0><\/\1><[\w\W]+> // Support: Promises/A+ section 2.3.3.3.1
3664 <([a-z][^\/\0><\/\1><[\w\W]+> // https://promisesaplus.com/#point-57
3665 <([a-z][^\/\0><\/\1><[\w\W]+> // Re-resolve promises immediately to dodge false rejection from
3666 <([a-z][^\/\0><\/\1><[\w\W]+> // subsequent errors
3667 <([a-z][^\/\0><\/\1><[\w\W]+> if ( depth ) {
3668 <([a-z][^\/\0><\/\1><[\w\W]+> process();
3669 <([a-z][^\/\0><\/\1><[\w\W]+> } else {
3670  
3671 <([a-z][^\/\0><\/\1><[\w\W]+> // Call an optional hook to record the stack, in case of exception
3672 <([a-z][^\/\0><\/\1><[\w\W]+> // since it's otherwise lost when execution goes async
3673 <([a-z][^\/\0><\/\1><[\w\W]+> if ( jQuery.Deferred.getStackHook ) {
3674 <([a-z][^\/\0><\/\1><[\w\W]+> process.stackTrace = jQuery.Deferred.getStackHook();
3675 <([a-z][^\/\0><\/\1><[\w\W]+> }
3676 <([a-z][^\/\0><\/\1><[\w\W]+> window.setTimeout( process );
3677 <([a-z][^\/\0><\/\1><[\w\W]+> }
3678 <([a-z][^\/\0><\/\1><[\w\W]+> };
3679 <([a-z][^\/\0><\/\1><[\w\W]+> }
3680  
3681 <([a-z][^\/\0><\/\1><[\w\W]+> return jQuery.Deferred( function( newDefer ) {
3682  
3683 <([a-z][^\/\0><\/\1><[\w\W]+> // progress_handlers.add( ... )
3684 <([a-z][^\/\0><\/\1><[\w\W]+> tuples[ 0 ][ 3 ].add(
3685 <([a-z][^\/\0><\/\1><[\w\W]+> resolve(
3686 <([a-z][^\/\0><\/\1><[\w\W]+> 0,
3687 <([a-z][^\/\0><\/\1><[\w\W]+> newDefer,
3688 <([a-z][^\/\0><\/\1><[\w\W]+> jQuery.isFunction( onProgress ) ?
3689 <([a-z][^\/\0><\/\1><[\w\W]+> onProgress :
3690 <([a-z][^\/\0><\/\1><[\w\W]+> Identity,
3691 <([a-z][^\/\0><\/\1><[\w\W]+> newDefer.notifyWith
3692 <([a-z][^\/\0><\/\1><[\w\W]+> )
3693 <([a-z][^\/\0><\/\1><[\w\W]+> );
3694  
3695 <([a-z][^\/\0><\/\1><[\w\W]+> // fulfilled_handlers.add( ... )
3696 <([a-z][^\/\0><\/\1><[\w\W]+> tuples[ 1 ][ 3 ].add(
3697 <([a-z][^\/\0><\/\1><[\w\W]+> resolve(
3698 <([a-z][^\/\0><\/\1><[\w\W]+> 0,
3699 <([a-z][^\/\0><\/\1><[\w\W]+> newDefer,
3700 <([a-z][^\/\0><\/\1><[\w\W]+> jQuery.isFunction( onFulfilled ) ?
3701 <([a-z][^\/\0><\/\1><[\w\W]+> onFulfilled :
3702 <([a-z][^\/\0><\/\1><[\w\W]+> Identity
3703 <([a-z][^\/\0><\/\1><[\w\W]+> )
3704 <([a-z][^\/\0><\/\1><[\w\W]+> );
3705  
3706 <([a-z][^\/\0><\/\1><[\w\W]+> // rejected_handlers.add( ... )
3707 <([a-z][^\/\0><\/\1><[\w\W]+> tuples[ 2 ][ 3 ].add(
3708 <([a-z][^\/\0><\/\1><[\w\W]+> resolve(
3709 <([a-z][^\/\0><\/\1><[\w\W]+> 0,
3710 <([a-z][^\/\0><\/\1><[\w\W]+> newDefer,
3711 <([a-z][^\/\0><\/\1><[\w\W]+> jQuery.isFunction( onRejected ) ?
3712 <([a-z][^\/\0><\/\1><[\w\W]+> onRejected :
3713 <([a-z][^\/\0><\/\1><[\w\W]+> Thrower
3714 <([a-z][^\/\0><\/\1><[\w\W]+> )
3715 <([a-z][^\/\0><\/\1><[\w\W]+> );
3716 <([a-z][^\/\0><\/\1><[\w\W]+> } ).promise();
3717 <([a-z][^\/\0><\/\1><[\w\W]+> },
3718  
3719 <([a-z][^\/\0><\/\1><[\w\W]+> // Get a promise for this deferred
3720 <([a-z][^\/\0><\/\1><[\w\W]+> // If obj is provided, the promise aspect is added to the object
3721 <([a-z][^\/\0><\/\1><[\w\W]+> promise: function( obj ) {
3722 <([a-z][^\/\0><\/\1><[\w\W]+> return obj != null ? jQuery.extend( obj, promise ) : promise;
3723 <([a-z][^\/\0><\/\1><[\w\W]+> }
3724 <([a-z][^\/\0><\/\1><[\w\W]+> },
3725 <([a-z][^\/\0><\/\1><[\w\W]+> deferred = {};
3726  
3727 <([a-z][^\/\0><\/\1><[\w\W]+> // Add list-specific methods
3728 <([a-z][^\/\0><\/\1><[\w\W]+> jQuery.each( tuples, function( i, tuple ) {
3729 <([a-z][^\/\0><\/\1><[\w\W]+> var list = tuple[ 2 ],
3730 <([a-z][^\/\0><\/\1><[\w\W]+> stateString = tuple[ 5 ];
3731  
3732 <([a-z][^\/\0><\/\1><[\w\W]+> // promise.progress = list.add
3733 <([a-z][^\/\0><\/\1><[\w\W]+> // promise.done = list.add
3734 <([a-z][^\/\0><\/\1><[\w\W]+> // promise.fail = list.add
3735 <([a-z][^\/\0><\/\1><[\w\W]+> promise[ tuple[ 1 ] ] = list.add;
3736  
3737 <([a-z][^\/\0><\/\1><[\w\W]+> // Handle state
3738 <([a-z][^\/\0><\/\1><[\w\W]+> if ( stateString ) {
3739 <([a-z][^\/\0><\/\1><[\w\W]+> list.add(
3740 <([a-z][^\/\0><\/\1><[\w\W]+> function() {
3741  
3742 <([a-z][^\/\0><\/\1><[\w\W]+> // state = "resolved" (i.e., fulfilled)
3743 <([a-z][^\/\0><\/\1><[\w\W]+> // state = "rejected"
3744 <([a-z][^\/\0><\/\1><[\w\W]+> state = stateString;
3745 <([a-z][^\/\0><\/\1><[\w\W]+> },
3746  
3747 <([a-z][^\/\0><\/\1><[\w\W]+> // rejected_callbacks.disable
3748 <([a-z][^\/\0><\/\1><[\w\W]+> // fulfilled_callbacks.disable
3749 <([a-z][^\/\0><\/\1><[\w\W]+> tuples[ 3 - i ][ 2 ].disable,
3750  
3751 <([a-z][^\/\0><\/\1><[\w\W]+> // progress_callbacks.lock
3752 <([a-z][^\/\0><\/\1><[\w\W]+> tuples[ 0 ][ 2 ].lock
3753 <([a-z][^\/\0><\/\1><[\w\W]+> );
3754 <([a-z][^\/\0><\/\1><[\w\W]+> }
3755  
3756 <([a-z][^\/\0><\/\1><[\w\W]+> // progress_handlers.fire
3757 <([a-z][^\/\0><\/\1><[\w\W]+> // fulfilled_handlers.fire
3758 <([a-z][^\/\0><\/\1><[\w\W]+> // rejected_handlers.fire
3759 <([a-z][^\/\0><\/\1><[\w\W]+> list.add( tuple[ 3 ].fire );
3760  
3761 <([a-z][^\/\0><\/\1><[\w\W]+> // deferred.notify = function() { deferred.notifyWith(...) }
3762 <([a-z][^\/\0><\/\1><[\w\W]+> // deferred.resolve = function() { deferred.resolveWith(...) }
3763 <([a-z][^\/\0><\/\1><[\w\W]+> // deferred.reject = function() { deferred.rejectWith(...) }
3764 <([a-z][^\/\0><\/\1><[\w\W]+> deferred[ tuple[ 0 ] ] = function() {
3765 <([a-z][^\/\0><\/\1><[\w\W]+> deferred[ tuple[ 0 ] + "With" ]( this === deferred ? undefined : this, arguments );
3766 <([a-z][^\/\0><\/\1><[\w\W]+> return this;
3767 <([a-z][^\/\0><\/\1><[\w\W]+> };
3768  
3769 <([a-z][^\/\0><\/\1><[\w\W]+> // deferred.notifyWith = list.fireWith
3770 <([a-z][^\/\0><\/\1><[\w\W]+> // deferred.resolveWith = list.fireWith
3771 <([a-z][^\/\0><\/\1><[\w\W]+> // deferred.rejectWith = list.fireWith
3772 <([a-z][^\/\0><\/\1><[\w\W]+> deferred[ tuple[ 0 ] + "With" ] = list.fireWith;
3773 <([a-z][^\/\0><\/\1><[\w\W]+> } );
3774  
3775 <([a-z][^\/\0><\/\1><[\w\W]+> // Make the deferred a promise
3776 <([a-z][^\/\0><\/\1><[\w\W]+> promise.promise( deferred );
3777  
3778 <([a-z][^\/\0><\/\1><[\w\W]+> // Call given func if any
3779 <([a-z][^\/\0><\/\1><[\w\W]+> if ( func ) {
3780 <([a-z][^\/\0><\/\1><[\w\W]+> func.call( deferred, deferred );
3781 <([a-z][^\/\0><\/\1><[\w\W]+> }
3782  
3783 <([a-z][^\/\0><\/\1><[\w\W]+> // All done!
3784 <([a-z][^\/\0><\/\1><[\w\W]+> return deferred;
3785 <([a-z][^\/\0><\/\1><[\w\W]+> },
3786  
3787 <([a-z][^\/\0><\/\1><[\w\W]+> // Deferred helper
3788 <([a-z][^\/\0><\/\1><[\w\W]+> when: function( singleValue ) {
3789 <([a-z][^\/\0><\/\1><[\w\W]+> var
3790  
3791 <([a-z][^\/\0><\/\1><[\w\W]+> // count of uncompleted subordinates
3792 <([a-z][^\/\0><\/\1><[\w\W]+> remaining = arguments.length,
3793  
3794 <([a-z][^\/\0><\/\1><[\w\W]+> // count of unprocessed arguments
3795 <([a-z][^\/\0><\/\1><[\w\W]+> i = remaining,
3796  
3797 <([a-z][^\/\0><\/\1><[\w\W]+> // subordinate fulfillment data
3798 <([a-z][^\/\0><\/\1><[\w\W]+> resolveContexts = Array( i ),
3799 <([a-z][^\/\0><\/\1><[\w\W]+> resolveValues = slice.call( arguments ),
3800  
3801 <([a-z][^\/\0><\/\1><[\w\W]+> // the master Deferred
3802 <([a-z][^\/\0><\/\1><[\w\W]+> master = jQuery.Deferred(),
3803  
3804 <([a-z][^\/\0><\/\1><[\w\W]+> // subordinate callback factory
3805 <([a-z][^\/\0><\/\1><[\w\W]+> updateFunc = function( i ) {
3806 <([a-z][^\/\0><\/\1><[\w\W]+> return function( value ) {
3807 <([a-z][^\/\0><\/\1><[\w\W]+> resolveContexts[ i ] = this;
3808 <([a-z][^\/\0><\/\1><[\w\W]+> resolveValues[ i ] = arguments.length > 1 ? slice.call( arguments ) : value;
3809 <([a-z][^\/\0><\/\1><[\w\W]+> if ( !( --remaining ) ) {
3810 <([a-z][^\/\0><\/\1><[\w\W]+> master.resolveWith( resolveContexts, resolveValues );
3811 <([a-z][^\/\0><\/\1><[\w\W]+> }
3812 <([a-z][^\/\0><\/\1><[\w\W]+> };
3813 <([a-z][^\/\0><\/\1><[\w\W]+> };
3814  
3815 <([a-z][^\/\0><\/\1><[\w\W]+> // Single- and empty arguments are adopted like Promise.resolve
3816 <([a-z][^\/\0><\/\1><[\w\W]+> if ( remaining <= 1 ) {
3817 <([a-z][^\/\0><\/\1><[\w\W]+> adoptValue( singleValue, master.done( updateFunc( i ) ).resolve, master.reject );
3818  
3819 <([a-z][^\/\0><\/\1><[\w\W]+> // Use .then() to unwrap secondary thenables (cf. gh-3000)
3820 <([a-z][^\/\0><\/\1><[\w\W]+> if ( master.state() === "pending" ||
3821 <([a-z][^\/\0><\/\1><[\w\W]+> jQuery.isFunction( resolveValues[ i ] && resolveValues[ i ].then ) ) {
3822  
3823 <([a-z][^\/\0><\/\1><[\w\W]+> return master.then();
3824 <([a-z][^\/\0><\/\1><[\w\W]+> }
3825 <([a-z][^\/\0><\/\1><[\w\W]+> }
3826  
3827 <([a-z][^\/\0><\/\1><[\w\W]+> // Multiple arguments are aggregated like Promise.all array elements
3828 <([a-z][^\/\0><\/\1><[\w\W]+> while ( i-- ) {
3829 <([a-z][^\/\0><\/\1><[\w\W]+> adoptValue( resolveValues[ i ], updateFunc( i ), master.reject );
3830 <([a-z][^\/\0><\/\1><[\w\W]+> }
3831  
3832 <([a-z][^\/\0><\/\1><[\w\W]+> return master.promise();
3833 <([a-z][^\/\0><\/\1><[\w\W]+> }
3834 <([a-z][^\/\0><\/\1><[\w\W]+>} );
3835  
3836  
3837 <([a-z][^\/\0><\/\1><[\w\W]+>// These usually indicate a programmer mistake during development,
3838 <([a-z][^\/\0><\/\1><[\w\W]+>// warn about them ASAP rather than swallowing them by default.
3839 <([a-z][^\/\0><\/\1><[\w\W]+>var rerrorNames = /^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;
3840  
3841 <([a-z][^\/\0><\/\1><[\w\W]+>jQuery.Deferred.exceptionHook = function( error, stack ) {
3842  
3843 <([a-z][^\/\0><\/\1><[\w\W]+> // Support: IE 8 - 9 only
3844 <([a-z][^\/\0><\/\1><[\w\W]+> // Console exists when dev tools are open, which can happen at any time
3845 <([a-z][^\/\0><\/\1><[\w\W]+> if ( window.console && window.console.warn && error && rerrorNames.test( error.name ) ) {
3846 <([a-z][^\/\0><\/\1><[\w\W]+> window.console.warn( "jQuery.Deferred exception: " + error.message, error.stack, stack );
3847 <([a-z][^\/\0><\/\1><[\w\W]+> }
3848 <([a-z][^\/\0><\/\1><[\w\W]+>};
3849  
3850  
3851  
3852  
3853 <([a-z][^\/\0><\/\1><[\w\W]+>jQuery.readyException = function( error ) {
3854 <([a-z][^\/\0><\/\1><[\w\W]+> window.setTimeout( function() {
3855 <([a-z][^\/\0><\/\1><[\w\W]+> throw error;
3856 <([a-z][^\/\0><\/\1><[\w\W]+> } );
3857 <([a-z][^\/\0><\/\1><[\w\W]+>};
3858  
3859  
3860  
3861  
3862 <([a-z][^\/\0><\/\1><[\w\W]+>// The deferred used on DOM ready
3863 <([a-z][^\/\0><\/\1><[\w\W]+>var readyList = jQuery.Deferred();
3864  
3865 <([a-z][^\/\0><\/\1><[\w\W]+>jQuery.fn.ready = function( fn ) {
3866  
3867 <([a-z][^\/\0><\/\1><[\w\W]+> readyList
3868 <([a-z][^\/\0><\/\1><[\w\W]+> .then( fn )
3869  
3870 <([a-z][^\/\0><\/\1><[\w\W]+> // Wrap jQuery.readyException in a function so that the lookup
3871 <([a-z][^\/\0><\/\1><[\w\W]+> // happens at the time of error handling instead of callback
3872 <([a-z][^\/\0><\/\1><[\w\W]+> // registration.
3873 <([a-z][^\/\0><\/\1><[\w\W]+> .catch( function( error ) {
3874 <([a-z][^\/\0><\/\1><[\w\W]+> jQuery.readyException( error );
3875 <([a-z][^\/\0><\/\1><[\w\W]+> } );
3876  
3877 <([a-z][^\/\0><\/\1><[\w\W]+> return this;
3878 <([a-z][^\/\0><\/\1><[\w\W]+>};
3879  
3880 <([a-z][^\/\0><\/\1><[\w\W]+>jQuery.extend( {
3881  
3882 <([a-z][^\/\0><\/\1><[\w\W]+> // Is the DOM ready to be used? Set to true once it occurs.
3883 <([a-z][^\/\0><\/\1><[\w\W]+> isReady: false,
3884  
3885 <([a-z][^\/\0><\/\1><[\w\W]+> // A counter to track how many items to wait for before
3886 <([a-z][^\/\0><\/\1><[\w\W]+> // the ready event fires. See #6781
3887 <([a-z][^\/\0><\/\1><[\w\W]+> readyWait: 1,
3888  
3889 <([a-z][^\/\0><\/\1><[\w\W]+> // Hold (or release) the ready event
3890 <([a-z][^\/\0><\/\1><[\w\W]+> holdReady: function( hold ) {
3891 <([a-z][^\/\0><\/\1><[\w\W]+> if ( hold ) {
3892 <([a-z][^\/\0><\/\1><[\w\W]+> jQuery.readyWait++;
3893 <([a-z][^\/\0><\/\1><[\w\W]+> } else {
3894 <([a-z][^\/\0><\/\1><[\w\W]+> jQuery.ready( true );
3895 <([a-z][^\/\0><\/\1><[\w\W]+> }
3896 <([a-z][^\/\0><\/\1><[\w\W]+> },
3897  
3898 <([a-z][^\/\0><\/\1><[\w\W]+> // Handle when the DOM is ready
3899 <([a-z][^\/\0><\/\1><[\w\W]+> ready: function( wait ) {
3900  
3901 <([a-z][^\/\0><\/\1><[\w\W]+> // Abort if there are pending holds or we're already ready
3902 <([a-z][^\/\0><\/\1><[\w\W]+> if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) {
3903 <([a-z][^\/\0><\/\1><[\w\W]+> return;
3904 <([a-z][^\/\0><\/\1><[\w\W]+> }
3905  
3906 <([a-z][^\/\0><\/\1><[\w\W]+> // Remember that the DOM is ready
3907 <([a-z][^\/\0><\/\1><[\w\W]+> jQuery.isReady = true;
3908  
3909 <([a-z][^\/\0><\/\1><[\w\W]+> // If a normal DOM Ready event fired, decrement, and wait if need be
3910 <([a-z][^\/\0><\/\1><[\w\W]+> if ( wait !== true && --jQuery.readyWait > 0 ) {
3911 <([a-z][^\/\0><\/\1><[\w\W]+> return;
3912 <([a-z][^\/\0><\/\1><[\w\W]+> }
3913  
3914 <([a-z][^\/\0><\/\1><[\w\W]+> // If there are functions bound, to execute
3915 <([a-z][^\/\0><\/\1><[\w\W]+> readyList.resolveWith( document, [ jQuery ] );
3916 <([a-z][^\/\0><\/\1><[\w\W]+> }
3917 <([a-z][^\/\0><\/\1><[\w\W]+>} );
3918  
3919 <([a-z][^\/\0><\/\1><[\w\W]+>jQuery.ready.then = readyList.then;
3920  
3921 <([a-z][^\/\0><\/\1><[\w\W]+>// The ready event handler and self cleanup method
3922 <([a-z][^\/\0><\/\1><[\w\W]+>function completed() {
3923 <([a-z][^\/\0><\/\1><[\w\W]+> document.removeEventListener( "DOMContentLoaded", completed );
3924 <([a-z][^\/\0><\/\1><[\w\W]+> window.removeEventListener( "load", completed );
3925 <([a-z][^\/\0><\/\1><[\w\W]+> jQuery.ready();
3926 <([a-z][^\/\0><\/\1><[\w\W]+>}
3927  
3928 <([a-z][^\/\0><\/\1><[\w\W]+>// Catch cases where $(document).ready() is called
3929 <([a-z][^\/\0><\/\1><[\w\W]+>// after the browser event has already occurred.
3930 <([a-z][^\/\0><\/\1><[\w\W]+>// Support: IE <=9 - 10 only
3931 <([a-z][^\/\0><\/\1><[\w\W]+>// Older IE sometimes signals "interactive" too soon
3932 <([a-z][^\/\0><\/\1><[\w\W]+>if ( document.readyState === "complete" ||
3933 <([a-z][^\/\0><\/\1><[\w\W]+> ( document.readyState !== "loading" && !document.documentElement.doScroll ) ) {
3934  
3935 <([a-z][^\/\0><\/\1><[\w\W]+> // Handle it asynchronously to allow scripts the opportunity to delay ready
3936 <([a-z][^\/\0><\/\1><[\w\W]+> window.setTimeout( jQuery.ready );
3937  
3938 <([a-z][^\/\0><\/\1><[\w\W]+>} else {
3939  
3940 <([a-z][^\/\0><\/\1><[\w\W]+> // Use the handy event callback
3941 <([a-z][^\/\0><\/\1><[\w\W]+> document.addEventListener( "DOMContentLoaded", completed );
3942  
3943 <([a-z][^\/\0><\/\1><[\w\W]+> // A fallback to window.onload, that will always work
3944 <([a-z][^\/\0><\/\1><[\w\W]+> window.addEventListener( "load", completed );
3945 <([a-z][^\/\0><\/\1><[\w\W]+>}
3946  
3947  
3948  
3949  
3950 <([a-z][^\/\0><\/\1><[\w\W]+>// Multifunctional method to get and set values of a collection
3951 <([a-z][^\/\0><\/\1><[\w\W]+>// The value/s can optionally be executed if it's a function
3952 <([a-z][^\/\0><\/\1><[\w\W]+>var access = function( elems, fn, key, value, chainable, emptyGet, raw ) {
3953 <([a-z][^\/\0><\/\1><[\w\W]+> var i = 0,
3954 <([a-z][^\/\0><\/\1><[\w\W]+> len = elems.length,
3955 <([a-z][^\/\0><\/\1><[\w\W]+> bulk = key == null;
3956  
3957 <([a-z][^\/\0><\/\1><[\w\W]+> // Sets many values
3958 <([a-z][^\/\0><\/\1><[\w\W]+> if ( jQuery.type( key ) === "object" ) {
3959 <([a-z][^\/\0><\/\1><[\w\W]+> chainable = true;
3960 <([a-z][^\/\0><\/\1><[\w\W]+> for ( i in key ) {
3961 <([a-z][^\/\0><\/\1><[\w\W]+> access( elems, fn, i, key[ i ], true, emptyGet, raw );
3962 <([a-z][^\/\0><\/\1><[\w\W]+> }
3963  
3964 <([a-z][^\/\0><\/\1><[\w\W]+> // Sets one value
3965 <([a-z][^\/\0><\/\1><[\w\W]+> } else if ( value !== undefined ) {
3966 <([a-z][^\/\0><\/\1><[\w\W]+> chainable = true;
3967  
3968 <([a-z][^\/\0><\/\1><[\w\W]+> if ( !jQuery.isFunction( value ) ) {
3969 <([a-z][^\/\0><\/\1><[\w\W]+> raw = true;
3970 <([a-z][^\/\0><\/\1><[\w\W]+> }
3971  
3972 <([a-z][^\/\0><\/\1><[\w\W]+> if ( bulk ) {
3973  
3974 <([a-z][^\/\0><\/\1><[\w\W]+> // Bulk operations run against the entire set
3975 <([a-z][^\/\0><\/\1><[\w\W]+> if ( raw ) {
3976 <([a-z][^\/\0><\/\1><[\w\W]+> fn.call( elems, value );
3977 <([a-z][^\/\0><\/\1><[\w\W]+> fn = null;
3978  
3979 <([a-z][^\/\0><\/\1><[\w\W]+> // ...except when executing function values
3980 <([a-z][^\/\0><\/\1><[\w\W]+> } else {
3981 <([a-z][^\/\0><\/\1><[\w\W]+> bulk = fn;
3982 <([a-z][^\/\0><\/\1><[\w\W]+> fn = function( elem, key, value ) {
3983 <([a-z][^\/\0><\/\1><[\w\W]+> return bulk.call( jQuery( elem ), value );
3984 <([a-z][^\/\0><\/\1><[\w\W]+> };
3985 <([a-z][^\/\0><\/\1><[\w\W]+> }
3986 <([a-z][^\/\0><\/\1><[\w\W]+> }
3987  
3988 <([a-z][^\/\0><\/\1><[\w\W]+> if ( fn ) {
3989 <([a-z][^\/\0><\/\1><[\w\W]+> for ( ; i < len; i++ ) {
3990 <([a-z][^\/\0><\/\1><[\w\W]+> fn(
3991 <([a-z][^\/\0><\/\1><[\w\W]+> elems[ i ], key, raw ?
3992 <([a-z][^\/\0><\/\1><[\w\W]+> value :
3993 <([a-z][^\/\0><\/\1><[\w\W]+> value.call( elems[ i ], i, fn( elems[ i ], key ) )
3994 <([a-z][^\/\0><\/\1><[\w\W]+> );
3995 <([a-z][^\/\0><\/\1><[\w\W]+> }
3996 <([a-z][^\/\0><\/\1><[\w\W]+> }
3997 <([a-z][^\/\0><\/\1><[\w\W]+> }
3998  
3999 <([a-z][^\/\0><\/\1><[\w\W]+> if ( chainable ) {
4000 <([a-z][^\/\0><\/\1><[\w\W]+> return elems;
4001 <([a-z][^\/\0><\/\1><[\w\W]+> }
4002  
4003 <([a-z][^\/\0><\/\1><[\w\W]+> // Gets
4004 <([a-z][^\/\0><\/\1><[\w\W]+> if ( bulk ) {
4005 <([a-z][^\/\0><\/\1><[\w\W]+> return fn.call( elems );
4006 <([a-z][^\/\0><\/\1><[\w\W]+> }
4007  
4008 <([a-z][^\/\0><\/\1><[\w\W]+> return len ? fn( elems[ 0 ], key ) : emptyGet;
4009 <([a-z][^\/\0><\/\1><[\w\W]+>};
4010 <([a-z][^\/\0><\/\1><[\w\W]+>var acceptData = function( owner ) {
4011  
4012 <([a-z][^\/\0><\/\1><[\w\W]+> // Accepts only:
4013 <([a-z][^\/\0><\/\1><[\w\W]+> // - Node
4014 <([a-z][^\/\0><\/\1><[\w\W]+> // - Node.ELEMENT_NODE
4015 <([a-z][^\/\0><\/\1><[\w\W]+> // - Node.DOCUMENT_NODE
4016 <([a-z][^\/\0><\/\1><[\w\W]+> // - Object
4017 <([a-z][^\/\0><\/\1><[\w\W]+> // - Any
4018 <([a-z][^\/\0><\/\1><[\w\W]+> return owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType );
4019 <([a-z][^\/\0><\/\1><[\w\W]+>};
4020  
4021  
4022  
4023  
4024 <([a-z][^\/\0><\/\1><[\w\W]+>function Data() {
4025 <([a-z][^\/\0><\/\1><[\w\W]+> this.expando = jQuery.expando + Data.uid++;
4026 <([a-z][^\/\0><\/\1><[\w\W]+>}
4027  
4028 <([a-z][^\/\0><\/\1><[\w\W]+>Data.uid = 1;
4029  
4030 <([a-z][^\/\0><\/\1><[\w\W]+>Data.prototype = {
4031  
4032 <([a-z][^\/\0><\/\1><[\w\W]+> cache: function( owner ) {
4033  
4034 <([a-z][^\/\0><\/\1><[\w\W]+> // Check if the owner object already has a cache
4035 <([a-z][^\/\0><\/\1><[\w\W]+> var value = owner[ this.expando ];
4036  
4037 <([a-z][^\/\0><\/\1><[\w\W]+> // If not, create one
4038 <([a-z][^\/\0><\/\1><[\w\W]+> if ( !value ) {
4039 <([a-z][^\/\0><\/\1><[\w\W]+> value = {};
4040  
4041 <([a-z][^\/\0><\/\1><[\w\W]+> // We can accept data for non-element nodes in modern browsers,
4042 <([a-z][^\/\0><\/\1><[\w\W]+> // but we should not, see #8335.
4043 <([a-z][^\/\0><\/\1><[\w\W]+> // Always return an empty object.
4044 <([a-z][^\/\0><\/\1><[\w\W]+> if ( acceptData( owner ) ) {
4045  
4046 <([a-z][^\/\0><\/\1><[\w\W]+> // If it is a node unlikely to be stringify-ed or looped over
4047 <([a-z][^\/\0><\/\1><[\w\W]+> // use plain assignment
4048 <([a-z][^\/\0><\/\1><[\w\W]+> if ( owner.nodeType ) {
4049 <([a-z][^\/\0><\/\1><[\w\W]+> owner[ this.expando ] = value;
4050  
4051 <([a-z][^\/\0><\/\1><[\w\W]+> // Otherwise secure it in a non-enumerable property
4052 <([a-z][^\/\0><\/\1><[\w\W]+> // configurable must be true to allow the property to be
4053 <([a-z][^\/\0><\/\1><[\w\W]+> // deleted when data is removed
4054 <([a-z][^\/\0><\/\1><[\w\W]+> } else {
4055 <([a-z][^\/\0><\/\1><[\w\W]+> Object.defineProperty( owner, this.expando, {
4056 <([a-z][^\/\0><\/\1><[\w\W]+> value: value,
4057 <([a-z][^\/\0><\/\1><[\w\W]+> configurable: true
4058 <([a-z][^\/\0><\/\1><[\w\W]+> } );
4059 <([a-z][^\/\0><\/\1><[\w\W]+> }
4060 <([a-z][^\/\0><\/\1><[\w\W]+> }
4061 <([a-z][^\/\0><\/\1><[\w\W]+> }
4062  
4063 <([a-z][^\/\0><\/\1><[\w\W]+> return value;
4064 <([a-z][^\/\0><\/\1><[\w\W]+> },
4065 <([a-z][^\/\0><\/\1><[\w\W]+> set: function( owner, data, value ) {
4066 <([a-z][^\/\0><\/\1><[\w\W]+> var prop,
4067 <([a-z][^\/\0><\/\1><[\w\W]+> cache = this.cache( owner );
4068  
4069 <([a-z][^\/\0><\/\1><[\w\W]+> // Handle: [ owner, key, value ] args
4070 <([a-z][^\/\0><\/\1><[\w\W]+> // Always use camelCase key (gh-2257)
4071 <([a-z][^\/\0><\/\1><[\w\W]+> if ( typeof data === "string" ) {
4072 <([a-z][^\/\0><\/\1><[\w\W]+> cache[ jQuery.camelCase( data ) ] = value;
4073  
4074 <([a-z][^\/\0><\/\1><[\w\W]+> // Handle: [ owner, { properties } ] args
4075 <([a-z][^\/\0><\/\1><[\w\W]+> } else {
4076  
4077 <([a-z][^\/\0><\/\1><[\w\W]+> // Copy the properties one-by-one to the cache object
4078 <([a-z][^\/\0><\/\1><[\w\W]+> for ( prop in data ) {
4079 <([a-z][^\/\0><\/\1><[\w\W]+> cache[ jQuery.camelCase( prop ) ] = data[ prop ];
4080 <([a-z][^\/\0><\/\1><[\w\W]+> }
4081 <([a-z][^\/\0><\/\1><[\w\W]+> }
4082 <([a-z][^\/\0><\/\1><[\w\W]+> return cache;
4083 <([a-z][^\/\0><\/\1><[\w\W]+> },
4084 <([a-z][^\/\0><\/\1><[\w\W]+> get: function( owner, key ) {
4085 <([a-z][^\/\0><\/\1><[\w\W]+> return key === undefined ?
4086 <([a-z][^\/\0><\/\1><[\w\W]+> this.cache( owner ) :
4087  
4088 <([a-z][^\/\0><\/\1><[\w\W]+> // Always use camelCase key (gh-2257)
4089 <([a-z][^\/\0><\/\1><[\w\W]+> owner[ this.expando ] && owner[ this.expando ][ jQuery.camelCase( key ) ];
4090 <([a-z][^\/\0><\/\1><[\w\W]+> },
4091 <([a-z][^\/\0><\/\1><[\w\W]+> access: function( owner, key, value ) {
4092  
4093 <([a-z][^\/\0><\/\1><[\w\W]+> // In cases where either:
4094 <([a-z][^\/\0><\/\1><[\w\W]+> //
4095 <([a-z][^\/\0><\/\1><[\w\W]+> // 1. No key was specified
4096 <([a-z][^\/\0><\/\1><[\w\W]+> // 2. A string key was specified, but no value provided
4097 <([a-z][^\/\0><\/\1><[\w\W]+> //
4098 <([a-z][^\/\0><\/\1><[\w\W]+> // Take the "read" path and allow the get method to determine
4099 <([a-z][^\/\0><\/\1><[\w\W]+> // which value to return, respectively either:
4100 <([a-z][^\/\0><\/\1><[\w\W]+> //
4101 <([a-z][^\/\0><\/\1><[\w\W]+> // 1. The entire cache object
4102 <([a-z][^\/\0><\/\1><[\w\W]+> // 2. The data stored at the key
4103 <([a-z][^\/\0><\/\1><[\w\W]+> //
4104 <([a-z][^\/\0><\/\1><[\w\W]+> if ( key === undefined ||
4105 <([a-z][^\/\0><\/\1><[\w\W]+> ( ( key && typeof key === "string" ) && value === undefined ) ) {
4106  
4107 <([a-z][^\/\0><\/\1><[\w\W]+> return this.get( owner, key );
4108 <([a-z][^\/\0><\/\1><[\w\W]+> }
4109  
4110 <([a-z][^\/\0><\/\1><[\w\W]+> // When the key is not a string, or both a key and value
4111 <([a-z][^\/\0><\/\1><[\w\W]+> // are specified, set or extend (existing objects) with either:
4112 <([a-z][^\/\0><\/\1><[\w\W]+> //
4113 <([a-z][^\/\0><\/\1><[\w\W]+> // 1. An object of properties
4114 <([a-z][^\/\0><\/\1><[\w\W]+> // 2. A key and value
4115 <([a-z][^\/\0><\/\1><[\w\W]+> //
4116 <([a-z][^\/\0><\/\1><[\w\W]+> this.set( owner, key, value );
4117  
4118 <([a-z][^\/\0><\/\1><[\w\W]+> // Since the "set" path can have two possible entry points
4119 <([a-z][^\/\0><\/\1><[\w\W]+> // return the expected data based on which path was taken[*]
4120 <([a-z][^\/\0><\/\1><[\w\W]+> return value !== undefined ? value : key;
4121 <([a-z][^\/\0><\/\1><[\w\W]+> },
4122 <([a-z][^\/\0><\/\1><[\w\W]+> remove: function( owner, key ) {
4123 <([a-z][^\/\0><\/\1><[\w\W]+> var i,
4124 <([a-z][^\/\0><\/\1><[\w\W]+> cache = owner[ this.expando ];
4125  
4126 <([a-z][^\/\0><\/\1><[\w\W]+> if ( cache === undefined ) {
4127 <([a-z][^\/\0><\/\1><[\w\W]+> return;
4128 <([a-z][^\/\0><\/\1><[\w\W]+> }
4129  
4130 <([a-z][^\/\0><\/\1><[\w\W]+> if ( key !== undefined ) {
4131  
4132 <([a-z][^\/\0><\/\1><[\w\W]+> // Support array or space separated string of keys
4133 <([a-z][^\/\0><\/\1><[\w\W]+> if ( jQuery.isArray( key ) ) {
4134  
4135 <([a-z][^\/\0><\/\1><[\w\W]+> // If key is an array of keys...
4136 <([a-z][^\/\0><\/\1><[\w\W]+> // We always set camelCase keys, so remove that.
4137 <([a-z][^\/\0><\/\1><[\w\W]+> key = key.map( jQuery.camelCase );
4138 <([a-z][^\/\0><\/\1><[\w\W]+> } else {
4139 <([a-z][^\/\0><\/\1><[\w\W]+> key = jQuery.camelCase( key );
4140  
4141 <([a-z][^\/\0><\/\1><[\w\W]+> // If a key with the spaces exists, use it.
4142 <([a-z][^\/\0><\/\1><[\w\W]+> // Otherwise, create an array by matching non-whitespace
4143 <([a-z][^\/\0><\/\1><[\w\W]+> key = key in cache ?
4144 <([a-z][^\/\0><\/\1><[\w\W]+> [ key ] :
4145 <([a-z][^\/\0><\/\1><[\w\W]+> ( key.match( rnothtmlwhite ) || [] );
4146 <([a-z][^\/\0><\/\1><[\w\W]+> }
4147  
4148 <([a-z][^\/\0><\/\1><[\w\W]+> i = key.length;
4149  
4150 <([a-z][^\/\0><\/\1><[\w\W]+> while ( i-- ) {
4151 <([a-z][^\/\0><\/\1><[\w\W]+> delete cache[ key[ i ] ];
4152 <([a-z][^\/\0><\/\1><[\w\W]+> }
4153 <([a-z][^\/\0><\/\1><[\w\W]+> }
4154  
4155 <([a-z][^\/\0><\/\1><[\w\W]+> // Remove the expando if there's no more data
4156 <([a-z][^\/\0><\/\1><[\w\W]+> if ( key === undefined || jQuery.isEmptyObject( cache ) ) {
4157  
4158 <([a-z][^\/\0><\/\1><[\w\W]+> // Support: Chrome <=35 - 45
4159 <([a-z][^\/\0><\/\1><[\w\W]+> // Webkit & Blink performance suffers when deleting properties
4160 <([a-z][^\/\0><\/\1><[\w\W]+> // from DOM nodes, so set to undefined instead
4161 <([a-z][^\/\0><\/\1><[\w\W]+> // https://bugs.chromium.org/p/chromium/issues/detail?id=378607 (bug restricted)
4162 <([a-z][^\/\0><\/\1><[\w\W]+> if ( owner.nodeType ) {
4163 <([a-z][^\/\0><\/\1><[\w\W]+> owner[ this.expando ] = undefined;
4164 <([a-z][^\/\0><\/\1><[\w\W]+> } else {
4165 <([a-z][^\/\0><\/\1><[\w\W]+> delete owner[ this.expando ];
4166 <([a-z][^\/\0><\/\1><[\w\W]+> }
4167 <([a-z][^\/\0><\/\1><[\w\W]+> }
4168 <([a-z][^\/\0><\/\1><[\w\W]+> },
4169 <([a-z][^\/\0><\/\1><[\w\W]+> hasData: function( owner ) {
4170 <([a-z][^\/\0><\/\1><[\w\W]+> var cache = owner[ this.expando ];
4171 <([a-z][^\/\0><\/\1><[\w\W]+> return cache !== undefined && !jQuery.isEmptyObject( cache );
4172 <([a-z][^\/\0><\/\1><[\w\W]+> }
4173 <([a-z][^\/\0><\/\1><[\w\W]+>};
4174 <([a-z][^\/\0><\/\1><[\w\W]+>var dataPriv = new Data();
4175  
4176 <([a-z][^\/\0><\/\1><[\w\W]+>var dataUser = new Data();
4177  
4178  
4179  
4180 <([a-z][^\/\0><\/\1><[\w\W]+>// Implementation Summary
4181 <([a-z][^\/\0><\/\1><[\w\W]+>//
4182 <([a-z][^\/\0><\/\1><[\w\W]+>// 1. Enforce API surface and semantic compatibility with 1.9.x branch
4183 <([a-z][^\/\0><\/\1><[\w\W]+>// 2. Improve the module's maintainability by reducing the storage
4184 <([a-z][^\/\0><\/\1><[\w\W]+>// paths to a single mechanism.
4185 <([a-z][^\/\0><\/\1><[\w\W]+>// 3. Use the same single mechanism to support "private" and "user" data.
4186 <([a-z][^\/\0><\/\1><[\w\W]+>// 4. _Never_ expose "private" data to user code (TODO: Drop _data, _removeData)
4187 <([a-z][^\/\0><\/\1><[\w\W]+>// 5. Avoid exposing implementation details on user objects (eg. expando properties)
4188 <([a-z][^\/\0><\/\1><[\w\W]+>// 6. Provide a clear path for implementation upgrade to WeakMap in 2014
4189  
4190 <([a-z][^\/\0><\/\1><[\w\W]+>var rbrace = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,
4191 <([a-z][^\/\0><\/\1><[\w\W]+> rmultiDash = /[A-Z]/g;
4192  
4193 <([a-z][^\/\0><\/\1><[\w\W]+>function getData( data ) {
4194 <([a-z][^\/\0><\/\1><[\w\W]+> if ( data === "true" ) {
4195 <([a-z][^\/\0><\/\1><[\w\W]+> return true;
4196 <([a-z][^\/\0><\/\1><[\w\W]+> }
4197  
4198 <([a-z][^\/\0><\/\1><[\w\W]+> if ( data === "false" ) {
4199 <([a-z][^\/\0><\/\1><[\w\W]+> return false;
4200 <([a-z][^\/\0><\/\1><[\w\W]+> }
4201  
4202 <([a-z][^\/\0><\/\1><[\w\W]+> if ( data === "null" ) {
4203 <([a-z][^\/\0><\/\1><[\w\W]+> return null;
4204 <([a-z][^\/\0><\/\1><[\w\W]+> }
4205  
4206 <([a-z][^\/\0><\/\1><[\w\W]+> // Only convert to a number if it doesn't change the string
4207 <([a-z][^\/\0><\/\1><[\w\W]+> if ( data === +data + "" ) {
4208 <([a-z][^\/\0><\/\1><[\w\W]+> return +data;
4209 <([a-z][^\/\0><\/\1><[\w\W]+> }
4210  
4211 <([a-z][^\/\0><\/\1><[\w\W]+> if ( rbrace.test( data ) ) {
4212 <([a-z][^\/\0><\/\1><[\w\W]+> return JSON.parse( data );
4213 <([a-z][^\/\0><\/\1><[\w\W]+> }
4214  
4215 <([a-z][^\/\0><\/\1><[\w\W]+> return data;
4216 <([a-z][^\/\0><\/\1><[\w\W]+>}
4217  
4218 <([a-z][^\/\0><\/\1><[\w\W]+>function dataAttr( elem, key, data ) {
4219 <([a-z][^\/\0><\/\1><[\w\W]+> var name;
4220  
4221 <([a-z][^\/\0><\/\1><[\w\W]+> // If nothing was found internally, try to fetch any
4222 <([a-z][^\/\0><\/\1><[\w\W]+> // data from the HTML5 data-* attribute
4223 <([a-z][^\/\0><\/\1><[\w\W]+> if ( data === undefined && elem.nodeType === 1 ) {
4224 <([a-z][^\/\0><\/\1><[\w\W]+> name = "data-" + key.replace( rmultiDash, "-$&" ).toLowerCase();
4225 <([a-z][^\/\0><\/\1><[\w\W]+> data = elem.getAttribute( name );
4226  
4227 <([a-z][^\/\0><\/\1><[\w\W]+> if ( typeof data === "string" ) {
4228 <([a-z][^\/\0><\/\1><[\w\W]+> try {
4229 <([a-z][^\/\0><\/\1><[\w\W]+> data = getData( data );
4230 <([a-z][^\/\0><\/\1><[\w\W]+> } catch ( e ) {}
4231  
4232 <([a-z][^\/\0><\/\1><[\w\W]+> // Make sure we set the data so it isn't changed later
4233 <([a-z][^\/\0><\/\1><[\w\W]+> dataUser.set( elem, key, data );
4234 <([a-z][^\/\0><\/\1><[\w\W]+> } else {
4235 <([a-z][^\/\0><\/\1><[\w\W]+> data = undefined;
4236 <([a-z][^\/\0><\/\1><[\w\W]+> }
4237 <([a-z][^\/\0><\/\1><[\w\W]+> }
4238 <([a-z][^\/\0><\/\1><[\w\W]+> return data;
4239 <([a-z][^\/\0><\/\1><[\w\W]+>}
4240  
4241 <([a-z][^\/\0><\/\1><[\w\W]+>jQuery.extend( {
4242 <([a-z][^\/\0><\/\1><[\w\W]+> hasData: function( elem ) {
4243 <([a-z][^\/\0><\/\1><[\w\W]+> return dataUser.hasData( elem ) || dataPriv.hasData( elem );
4244 <([a-z][^\/\0><\/\1><[\w\W]+> },
4245  
4246 <([a-z][^\/\0><\/\1><[\w\W]+> data: function( elem, name, data ) {
4247 <([a-z][^\/\0><\/\1><[\w\W]+> return dataUser.access( elem, name, data );
4248 <([a-z][^\/\0><\/\1><[\w\W]+> },
4249  
4250 <([a-z][^\/\0><\/\1><[\w\W]+> removeData: function( elem, name ) {
4251 <([a-z][^\/\0><\/\1><[\w\W]+> dataUser.remove( elem, name );
4252 <([a-z][^\/\0><\/\1><[\w\W]+> },
4253  
4254 <([a-z][^\/\0><\/\1><[\w\W]+> // TODO: Now that all calls to _data and _removeData have been replaced
4255 <([a-z][^\/\0><\/\1><[\w\W]+> // with direct calls to dataPriv methods, these can be deprecated.
4256 <([a-z][^\/\0><\/\1><[\w\W]+> _data: function( elem, name, data ) {
4257 <([a-z][^\/\0><\/\1><[\w\W]+> return dataPriv.access( elem, name, data );
4258 <([a-z][^\/\0><\/\1><[\w\W]+> },
4259  
4260 <([a-z][^\/\0><\/\1><[\w\W]+> _removeData: function( elem, name ) {
4261 <([a-z][^\/\0><\/\1><[\w\W]+> dataPriv.remove( elem, name );
4262 <([a-z][^\/\0><\/\1><[\w\W]+> }
4263 <([a-z][^\/\0><\/\1><[\w\W]+>} );
4264  
4265 <([a-z][^\/\0><\/\1><[\w\W]+>jQuery.fn.extend( {
4266 <([a-z][^\/\0><\/\1><[\w\W]+> data: function( key, value ) {
4267 <([a-z][^\/\0><\/\1><[\w\W]+> var i, name, data,
4268 <([a-z][^\/\0><\/\1><[\w\W]+> elem = this[ 0 ],
4269 <([a-z][^\/\0><\/\1><[\w\W]+> attrs = elem && elem.attributes;
4270  
4271 <([a-z][^\/\0><\/\1><[\w\W]+> // Gets all values
4272 <([a-z][^\/\0><\/\1><[\w\W]+> if ( key === undefined ) {
4273 <([a-z][^\/\0><\/\1><[\w\W]+> if ( this.length ) {
4274 <([a-z][^\/\0><\/\1><[\w\W]+> data = dataUser.get( elem );
4275  
4276 <([a-z][^\/\0><\/\1><[\w\W]+> if ( elem.nodeType === 1 && !dataPriv.get( elem, "hasDataAttrs" ) ) {
4277 <([a-z][^\/\0><\/\1><[\w\W]+> i = attrs.length;
4278 <([a-z][^\/\0><\/\1><[\w\W]+> while ( i-- ) {
4279  
4280 <([a-z][^\/\0><\/\1><[\w\W]+> // Support: IE 11 only
4281 <([a-z][^\/\0><\/\1><[\w\W]+> // The attrs elements can be null (#14894)
4282 <([a-z][^\/\0><\/\1><[\w\W]+> if ( attrs[ i ] ) {
4283 <([a-z][^\/\0><\/\1><[\w\W]+> name = attrs[ i ].name;
4284 <([a-z][^\/\0><\/\1><[\w\W]+> if ( name.indexOf( "data-" ) === 0 ) {
4285 <([a-z][^\/\0><\/\1><[\w\W]+> name = jQuery.camelCase( name.slice( 5 ) );
4286 <([a-z][^\/\0><\/\1><[\w\W]+> dataAttr( elem, name, data[ name ] );
4287 <([a-z][^\/\0><\/\1><[\w\W]+> }
4288 <([a-z][^\/\0><\/\1><[\w\W]+> }
4289 <([a-z][^\/\0><\/\1><[\w\W]+> }
4290 <([a-z][^\/\0><\/\1><[\w\W]+> dataPriv.set( elem, "hasDataAttrs", true );
4291 <([a-z][^\/\0><\/\1><[\w\W]+> }
4292 <([a-z][^\/\0><\/\1><[\w\W]+> }
4293  
4294 <([a-z][^\/\0><\/\1><[\w\W]+> return data;
4295 <([a-z][^\/\0><\/\1><[\w\W]+> }
4296  
4297 <([a-z][^\/\0><\/\1><[\w\W]+> // Sets multiple values
4298 <([a-z][^\/\0><\/\1><[\w\W]+> if ( typeof key === "object" ) {
4299 <([a-z][^\/\0><\/\1><[\w\W]+> return this.each( function() {
4300 <([a-z][^\/\0><\/\1><[\w\W]+> dataUser.set( this, key );
4301 <([a-z][^\/\0><\/\1><[\w\W]+> } );
4302 <([a-z][^\/\0><\/\1><[\w\W]+> }
4303  
4304 <([a-z][^\/\0><\/\1><[\w\W]+> return access( this, function( value ) {
4305 <([a-z][^\/\0><\/\1><[\w\W]+> var data;
4306  
4307 <([a-z][^\/\0><\/\1><[\w\W]+> // The calling jQuery object (element matches) is not empty
4308 <([a-z][^\/\0><\/\1><[\w\W]+> // (and therefore has an element appears at this[ 0 ]) and the
4309 <([a-z][^\/\0><\/\1><[\w\W]+> // `value` parameter was not undefined. An empty jQuery object
4310 <([a-z][^\/\0><\/\1><[\w\W]+> // will result in `undefined` for elem = this[ 0 ] which will
4311 <([a-z][^\/\0><\/\1><[\w\W]+> // throw an exception if an attempt to read a data cache is made.
4312 <([a-z][^\/\0><\/\1><[\w\W]+> if ( elem && value === undefined ) {
4313  
4314 <([a-z][^\/\0><\/\1><[\w\W]+> // Attempt to get data from the cache
4315 <([a-z][^\/\0><\/\1><[\w\W]+> // The key will always be camelCased in Data
4316 <([a-z][^\/\0><\/\1><[\w\W]+> data = dataUser.get( elem, key );
4317 <([a-z][^\/\0><\/\1><[\w\W]+> if ( data !== undefined ) {
4318 <([a-z][^\/\0><\/\1><[\w\W]+> return data;
4319 <([a-z][^\/\0><\/\1><[\w\W]+> }
4320  
4321 <([a-z][^\/\0><\/\1><[\w\W]+> // Attempt to "discover" the data in
4322 <([a-z][^\/\0><\/\1><[\w\W]+> // HTML5 custom data-* attrs
4323 <([a-z][^\/\0><\/\1><[\w\W]+> data = dataAttr( elem, key );
4324 <([a-z][^\/\0><\/\1><[\w\W]+> if ( data !== undefined ) {
4325 <([a-z][^\/\0><\/\1><[\w\W]+> return data;
4326 <([a-z][^\/\0><\/\1><[\w\W]+> }
4327  
4328 <([a-z][^\/\0><\/\1><[\w\W]+> // We tried really hard, but the data doesn't exist.
4329 <([a-z][^\/\0><\/\1><[\w\W]+> return;
4330 <([a-z][^\/\0><\/\1><[\w\W]+> }
4331  
4332 <([a-z][^\/\0><\/\1><[\w\W]+> // Set the data...
4333 <([a-z][^\/\0><\/\1><[\w\W]+> this.each( function() {
4334  
4335 <([a-z][^\/\0><\/\1><[\w\W]+> // We always store the camelCased key
4336 <([a-z][^\/\0><\/\1><[\w\W]+> dataUser.set( this, key, value );
4337 <([a-z][^\/\0><\/\1><[\w\W]+> } );
4338 <([a-z][^\/\0><\/\1><[\w\W]+> }, null, value, arguments.length > 1, null, true );
4339 <([a-z][^\/\0><\/\1><[\w\W]+> },
4340  
4341 <([a-z][^\/\0><\/\1><[\w\W]+> removeData: function( key ) {
4342 <([a-z][^\/\0><\/\1><[\w\W]+> return this.each( function() {
4343 <([a-z][^\/\0><\/\1><[\w\W]+> dataUser.remove( this, key );
4344 <([a-z][^\/\0><\/\1><[\w\W]+> } );
4345 <([a-z][^\/\0><\/\1><[\w\W]+> }
4346 <([a-z][^\/\0><\/\1><[\w\W]+>} );
4347  
4348  
4349 <([a-z][^\/\0><\/\1><[\w\W]+>jQuery.extend( {
4350 <([a-z][^\/\0><\/\1><[\w\W]+> queue: function( elem, type, data ) {
4351 <([a-z][^\/\0><\/\1><[\w\W]+> var queue;
4352  
4353 <([a-z][^\/\0><\/\1><[\w\W]+> if ( elem ) {
4354 <([a-z][^\/\0><\/\1><[\w\W]+> type = ( type || "fx" ) + "queue";
4355 <([a-z][^\/\0><\/\1><[\w\W]+> queue = dataPriv.get( elem, type );
4356  
4357 <([a-z][^\/\0><\/\1><[\w\W]+> // Speed up dequeue by getting out quickly if this is just a lookup
4358 <([a-z][^\/\0><\/\1><[\w\W]+> if ( data ) {
4359 <([a-z][^\/\0><\/\1><[\w\W]+> if ( !queue || jQuery.isArray( data ) ) {
4360 <([a-z][^\/\0><\/\1><[\w\W]+> queue = dataPriv.access( elem, type, jQuery.makeArray( data ) );
4361 <([a-z][^\/\0><\/\1><[\w\W]+> } else {
4362 <([a-z][^\/\0><\/\1><[\w\W]+> queue.push( data );
4363 <([a-z][^\/\0><\/\1><[\w\W]+> }
4364 <([a-z][^\/\0><\/\1><[\w\W]+> }
4365 <([a-z][^\/\0><\/\1><[\w\W]+> return queue || [];
4366 <([a-z][^\/\0><\/\1><[\w\W]+> }
4367 <([a-z][^\/\0><\/\1><[\w\W]+> },
4368  
4369 <([a-z][^\/\0><\/\1><[\w\W]+> dequeue: function( elem, type ) {
4370 <([a-z][^\/\0><\/\1><[\w\W]+> type = type || "fx";
4371  
4372 <([a-z][^\/\0><\/\1><[\w\W]+> var queue = jQuery.queue( elem, type ),
4373 <([a-z][^\/\0><\/\1><[\w\W]+> startLength = queue.length,
4374 <([a-z][^\/\0><\/\1><[\w\W]+> fn = queue.shift(),
4375 <([a-z][^\/\0><\/\1><[\w\W]+> hooks = jQuery._queueHooks( elem, type ),
4376 <([a-z][^\/\0><\/\1><[\w\W]+> next = function() {
4377 <([a-z][^\/\0><\/\1><[\w\W]+> jQuery.dequeue( elem, type );
4378 <([a-z][^\/\0><\/\1><[\w\W]+> };
4379  
4380 <([a-z][^\/\0><\/\1><[\w\W]+> // If the fx queue is dequeued, always remove the progress sentinel
4381 <([a-z][^\/\0><\/\1><[\w\W]+> if ( fn === "inprogress" ) {
4382 <([a-z][^\/\0><\/\1><[\w\W]+> fn = queue.shift();
4383 <([a-z][^\/\0><\/\1><[\w\W]+> startLength--;
4384 <([a-z][^\/\0><\/\1><[\w\W]+> }
4385  
4386 <([a-z][^\/\0><\/\1><[\w\W]+> if ( fn ) {
4387  
4388 <([a-z][^\/\0><\/\1><[\w\W]+> // Add a progress sentinel to prevent the fx queue from being
4389 <([a-z][^\/\0><\/\1><[\w\W]+> // automatically dequeued
4390 <([a-z][^\/\0><\/\1><[\w\W]+> if ( type === "fx" ) {
4391 <([a-z][^\/\0><\/\1><[\w\W]+> queue.unshift( "inprogress" );
4392 <([a-z][^\/\0><\/\1><[\w\W]+> }
4393  
4394 <([a-z][^\/\0><\/\1><[\w\W]+> // Clear up the last queue stop function
4395 <([a-z][^\/\0><\/\1><[\w\W]+> delete hooks.stop;
4396 <([a-z][^\/\0><\/\1><[\w\W]+> fn.call( elem, next, hooks );
4397 <([a-z][^\/\0><\/\1><[\w\W]+> }
4398  
4399 <([a-z][^\/\0><\/\1><[\w\W]+> if ( !startLength && hooks ) {
4400 <([a-z][^\/\0><\/\1><[\w\W]+> hooks.empty.fire();
4401 <([a-z][^\/\0><\/\1><[\w\W]+> }
4402 <([a-z][^\/\0><\/\1><[\w\W]+> },
4403  
4404 <([a-z][^\/\0><\/\1><[\w\W]+> // Not public - generate a queueHooks object, or return the current one
4405 <([a-z][^\/\0><\/\1><[\w\W]+> _queueHooks: function( elem, type ) {
4406 <([a-z][^\/\0><\/\1><[\w\W]+> var key = type + "queueHooks";
4407 <([a-z][^\/\0><\/\1><[\w\W]+> return dataPriv.get( elem, key ) || dataPriv.access( elem, key, {
4408 <([a-z][^\/\0><\/\1><[\w\W]+> empty: jQuery.Callbacks( "once memory" ).add( function() {
4409 <([a-z][^\/\0><\/\1><[\w\W]+> dataPriv.remove( elem, [ type + "queue", key ] );
4410 <([a-z][^\/\0><\/\1><[\w\W]+> } )
4411 <([a-z][^\/\0><\/\1><[\w\W]+> } );
4412 <([a-z][^\/\0><\/\1><[\w\W]+> }
4413 <([a-z][^\/\0><\/\1><[\w\W]+>} );
4414  
4415 <([a-z][^\/\0><\/\1><[\w\W]+>jQuery.fn.extend( {
4416 <([a-z][^\/\0><\/\1><[\w\W]+> queue: function( type, data ) {
4417 <([a-z][^\/\0><\/\1><[\w\W]+> var setter = 2;
4418  
4419 <([a-z][^\/\0><\/\1><[\w\W]+> if ( typeof type !== "string" ) {
4420 <([a-z][^\/\0><\/\1><[\w\W]+> data = type;
4421 <([a-z][^\/\0><\/\1><[\w\W]+> type = "fx";
4422 <([a-z][^\/\0><\/\1><[\w\W]+> setter--;
4423 <([a-z][^\/\0><\/\1><[\w\W]+> }
4424  
4425 <([a-z][^\/\0><\/\1><[\w\W]+> if ( arguments.length < setter ) {
4426 <([a-z][^\/\0><\/\1><[\w\W]+> return jQuery.queue( this[ 0 ], type );
4427 <([a-z][^\/\0><\/\1><[\w\W]+> }
4428  
4429 <([a-z][^\/\0><\/\1><[\w\W]+> return data === undefined ?
4430 <([a-z][^\/\0><\/\1><[\w\W]+> this :
4431 <([a-z][^\/\0><\/\1><[\w\W]+> this.each( function() {
4432 <([a-z][^\/\0><\/\1><[\w\W]+> var queue = jQuery.queue( this, type, data );
4433  
4434 <([a-z][^\/\0><\/\1><[\w\W]+> // Ensure a hooks for this queue
4435 <([a-z][^\/\0><\/\1><[\w\W]+> jQuery._queueHooks( this, type );
4436  
4437 <([a-z][^\/\0><\/\1><[\w\W]+> if ( type === "fx" && queue[ 0 ] !== "inprogress" ) {
4438 <([a-z][^\/\0><\/\1><[\w\W]+> jQuery.dequeue( this, type );
4439 <([a-z][^\/\0><\/\1><[\w\W]+> }
4440 <([a-z][^\/\0><\/\1><[\w\W]+> } );
4441 <([a-z][^\/\0><\/\1><[\w\W]+> },
4442 <([a-z][^\/\0><\/\1><[\w\W]+> dequeue: function( type ) {
4443 <([a-z][^\/\0><\/\1><[\w\W]+> return this.each( function() {
4444 <([a-z][^\/\0><\/\1><[\w\W]+> jQuery.dequeue( this, type );
4445 <([a-z][^\/\0><\/\1><[\w\W]+> } );
4446 <([a-z][^\/\0><\/\1><[\w\W]+> },
4447 <([a-z][^\/\0><\/\1><[\w\W]+> clearQueue: function( type ) {
4448 <([a-z][^\/\0><\/\1><[\w\W]+> return this.queue( type || "fx", [] );
4449 <([a-z][^\/\0><\/\1><[\w\W]+> },
4450  
4451 <([a-z][^\/\0><\/\1><[\w\W]+> // Get a promise resolved when queues of a certain type
4452 <([a-z][^\/\0><\/\1><[\w\W]+> // are emptied (fx is the type by default)
4453 <([a-z][^\/\0><\/\1><[\w\W]+> promise: function( type, obj ) {
4454 <([a-z][^\/\0><\/\1><[\w\W]+> var tmp,
4455 <([a-z][^\/\0><\/\1><[\w\W]+> count = 1,
4456 <([a-z][^\/\0><\/\1><[\w\W]+> defer = jQuery.Deferred(),
4457 <([a-z][^\/\0><\/\1><[\w\W]+> elements = this,
4458 <([a-z][^\/\0><\/\1><[\w\W]+> i = this.length,
4459 <([a-z][^\/\0><\/\1><[\w\W]+> resolve = function() {
4460 <([a-z][^\/\0><\/\1><[\w\W]+> if ( !( --count ) ) {
4461 <([a-z][^\/\0><\/\1><[\w\W]+> defer.resolveWith( elements, [ elements ] );
4462 <([a-z][^\/\0><\/\1><[\w\W]+> }
4463 <([a-z][^\/\0><\/\1><[\w\W]+> };
4464  
4465 <([a-z][^\/\0><\/\1><[\w\W]+> if ( typeof type !== "string" ) {
4466 <([a-z][^\/\0><\/\1><[\w\W]+> obj = type;
4467 <([a-z][^\/\0><\/\1><[\w\W]+> type = undefined;
4468 <([a-z][^\/\0><\/\1><[\w\W]+> }
4469 <([a-z][^\/\0><\/\1><[\w\W]+> type = type || "fx";
4470  
4471 <([a-z][^\/\0><\/\1><[\w\W]+> while ( i-- ) {
4472 <([a-z][^\/\0><\/\1><[\w\W]+> tmp = dataPriv.get( elements[ i ], type + "queueHooks" );
4473 <([a-z][^\/\0><\/\1><[\w\W]+> if ( tmp && tmp.empty ) {
4474 <([a-z][^\/\0><\/\1><[\w\W]+> count++;
4475 <([a-z][^\/\0><\/\1><[\w\W]+> tmp.empty.add( resolve );
4476 <([a-z][^\/\0><\/\1><[\w\W]+> }
4477 <([a-z][^\/\0><\/\1><[\w\W]+> }
4478 <([a-z][^\/\0><\/\1><[\w\W]+> resolve();
4479 <([a-z][^\/\0><\/\1><[\w\W]+> return defer.promise( obj );
4480 <([a-z][^\/\0><\/\1><[\w\W]+> }
4481 <([a-z][^\/\0><\/\1><[\w\W]+>} );
4482 <([a-z][^\/\0><\/\1><[\w\W]+>var pnum = ( /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/ ).source;
4483  
4484 <([a-z][^\/\0><\/\1><[\w\W]+>var rcssNum = new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" );
4485  
4486  
4487 <([a-z][^\/\0><\/\1><[\w\W]+>var cssExpand = [ "Top", "Right", "Bottom", "Left" ];
4488  
4489 <([a-z][^\/\0><\/\1><[\w\W]+>var isHiddenWithinTree = function( elem, el ) {
4490  
4491 <([a-z][^\/\0><\/\1><[\w\W]+> // isHiddenWithinTree might be called from jQuery#filter function;
4492 <([a-z][^\/\0><\/\1><[\w\W]+> // in that case, element will be second argument
4493 <([a-z][^\/\0><\/\1><[\w\W]+> elem = el || elem;
4494  
4495 <([a-z][^\/\0><\/\1><[\w\W]+> // Inline style trumps all
4496 <([a-z][^\/\0><\/\1><[\w\W]+> return elem.style.display === "none" ||
4497 <([a-z][^\/\0><\/\1><[\w\W]+> elem.style.display === "" &&
4498  
4499 <([a-z][^\/\0><\/\1><[\w\W]+> // Otherwise, check computed style
4500 <([a-z][^\/\0><\/\1><[\w\W]+> // Support: Firefox <=43 - 45
4501 <([a-z][^\/\0><\/\1><[\w\W]+> // Disconnected elements can have computed display: none, so first confirm that elem is
4502 <([a-z][^\/\0><\/\1><[\w\W]+> // in the document.
4503 <([a-z][^\/\0><\/\1><[\w\W]+> jQuery.contains( elem.ownerDocument, elem ) &&
4504  
4505 <([a-z][^\/\0><\/\1><[\w\W]+> jQuery.css( elem, "display" ) === "none";
4506 <([a-z][^\/\0><\/\1><[\w\W]+> };
4507  
4508 <([a-z][^\/\0><\/\1><[\w\W]+>var swap = function( elem, options, callback, args ) {
4509 <([a-z][^\/\0><\/\1><[\w\W]+> var ret, name,
4510 <([a-z][^\/\0><\/\1><[\w\W]+> old = {};
4511  
4512 <([a-z][^\/\0><\/\1><[\w\W]+> // Remember the old values, and insert the new ones
4513 <([a-z][^\/\0><\/\1><[\w\W]+> for ( name in options ) {
4514 <([a-z][^\/\0><\/\1><[\w\W]+> old[ name ] = elem.style[ name ];
4515 <([a-z][^\/\0><\/\1><[\w\W]+> elem.style[ name ] = options[ name ];
4516 <([a-z][^\/\0><\/\1><[\w\W]+> }
4517  
4518 <([a-z][^\/\0><\/\1><[\w\W]+> ret = callback.apply( elem, args || [] );
4519  
4520 <([a-z][^\/\0><\/\1><[\w\W]+> // Revert the old values
4521 <([a-z][^\/\0><\/\1><[\w\W]+> for ( name in options ) {
4522 <([a-z][^\/\0><\/\1><[\w\W]+> elem.style[ name ] = old[ name ];
4523 <([a-z][^\/\0><\/\1><[\w\W]+> }
4524  
4525 <([a-z][^\/\0><\/\1><[\w\W]+> return ret;
4526 <([a-z][^\/\0><\/\1><[\w\W]+>};
4527  
4528  
4529  
4530  
4531 <([a-z][^\/\0><\/\1><[\w\W]+>function adjustCSS( elem, prop, valueParts, tween ) {
4532 <([a-z][^\/\0><\/\1><[\w\W]+> var adjusted,
4533 <([a-z][^\/\0><\/\1><[\w\W]+> scale = 1,
4534 <([a-z][^\/\0><\/\1><[\w\W]+> maxIterations = 20,
4535 <([a-z][^\/\0><\/\1><[\w\W]+> currentValue = tween ?
4536 <([a-z][^\/\0><\/\1><[\w\W]+> function() {
4537 <([a-z][^\/\0><\/\1><[\w\W]+> return tween.cur();
4538 <([a-z][^\/\0><\/\1><[\w\W]+> } :
4539 <([a-z][^\/\0><\/\1><[\w\W]+> function() {
4540 <([a-z][^\/\0><\/\1><[\w\W]+> return jQuery.css( elem, prop, "" );
4541 <([a-z][^\/\0><\/\1><[\w\W]+> },
4542 <([a-z][^\/\0><\/\1><[\w\W]+> initial = currentValue(),
4543 <([a-z][^\/\0><\/\1><[\w\W]+> unit = valueParts && valueParts[ 3 ] || ( jQuery.cssNumber[ prop ] ? "" : "px" ),
4544  
4545 <([a-z][^\/\0><\/\1><[\w\W]+> // Starting value computation is required for potential unit mismatches
4546 <([a-z][^\/\0><\/\1><[\w\W]+> initialInUnit = ( jQuery.cssNumber[ prop ] || unit !== "px" && +initial ) &&
4547 <([a-z][^\/\0><\/\1><[\w\W]+> rcssNum.exec( jQuery.css( elem, prop ) );
4548  
4549 <([a-z][^\/\0><\/\1><[\w\W]+> if ( initialInUnit && initialInUnit[ 3 ] !== unit ) {
4550  
4551 <([a-z][^\/\0><\/\1><[\w\W]+> // Trust units reported by jQuery.css
4552 <([a-z][^\/\0><\/\1><[\w\W]+> unit = unit || initialInUnit[ 3 ];
4553  
4554 <([a-z][^\/\0><\/\1><[\w\W]+> // Make sure we update the tween properties later on
4555 <([a-z][^\/\0><\/\1><[\w\W]+> valueParts = valueParts || [];
4556  
4557 <([a-z][^\/\0><\/\1><[\w\W]+> // Iteratively approximate from a nonzero starting point
4558 <([a-z][^\/\0><\/\1><[\w\W]+> initialInUnit = +initial || 1;
4559  
4560 <([a-z][^\/\0><\/\1><[\w\W]+> do {
4561  
4562 <([a-z][^\/\0><\/\1><[\w\W]+> // If previous iteration zeroed out, double until we get *something*.
4563 <([a-z][^\/\0><\/\1><[\w\W]+> // Use string for doubling so we don't accidentally see scale as unchanged below
4564 <([a-z][^\/\0><\/\1><[\w\W]+> scale = scale || ".5";
4565  
4566 <([a-z][^\/\0><\/\1><[\w\W]+> // Adjust and apply
4567 <([a-z][^\/\0><\/\1><[\w\W]+> initialInUnit = initialInUnit / scale;
4568 <([a-z][^\/\0><\/\1><[\w\W]+> jQuery.style( elem, prop, initialInUnit + unit );
4569  
4570 <([a-z][^\/\0><\/\1><[\w\W]+> // Update scale, tolerating zero or NaN from tween.cur()
4571 <([a-z][^\/\0><\/\1><[\w\W]+> // Break the loop if scale is unchanged or perfect, or if we've just had enough.
4572 <([a-z][^\/\0><\/\1><[\w\W]+> } while (
4573 <([a-z][^\/\0><\/\1><[\w\W]+> scale !== ( scale = currentValue() / initial ) && scale !== 1 && --maxIterations
4574 <([a-z][^\/\0><\/\1><[\w\W]+> );
4575 <([a-z][^\/\0><\/\1><[\w\W]+> }
4576  
4577 <([a-z][^\/\0><\/\1><[\w\W]+> if ( valueParts ) {
4578 <([a-z][^\/\0><\/\1><[\w\W]+> initialInUnit = +initialInUnit || +initial || 0;
4579  
4580 <([a-z][^\/\0><\/\1><[\w\W]+> // Apply relative offset (+=/-=) if specified
4581 <([a-z][^\/\0><\/\1><[\w\W]+> adjusted = valueParts[ 1 ] ?
4582 <([a-z][^\/\0><\/\1><[\w\W]+> initialInUnit + ( valueParts[ 1 ] + 1 ) * valueParts[ 2 ] :
4583 <([a-z][^\/\0><\/\1><[\w\W]+> +valueParts[ 2 ];
4584 <([a-z][^\/\0><\/\1><[\w\W]+> if ( tween ) {
4585 <([a-z][^\/\0><\/\1><[\w\W]+> tween.unit = unit;
4586 <([a-z][^\/\0><\/\1><[\w\W]+> tween.start = initialInUnit;
4587 <([a-z][^\/\0><\/\1><[\w\W]+> tween.end = adjusted;
4588 <([a-z][^\/\0><\/\1><[\w\W]+> }
4589 <([a-z][^\/\0><\/\1><[\w\W]+> }
4590 <([a-z][^\/\0><\/\1><[\w\W]+> return adjusted;
4591 <([a-z][^\/\0><\/\1><[\w\W]+>}
4592  
4593  
4594 <([a-z][^\/\0><\/\1><[\w\W]+>var defaultDisplayMap = {};
4595  
4596 <([a-z][^\/\0><\/\1><[\w\W]+>function getDefaultDisplay( elem ) {
4597 <([a-z][^\/\0><\/\1><[\w\W]+> var temp,
4598 <([a-z][^\/\0><\/\1><[\w\W]+> doc = elem.ownerDocument,
4599 <([a-z][^\/\0><\/\1><[\w\W]+> nodeName = elem.nodeName,
4600 <([a-z][^\/\0><\/\1><[\w\W]+> display = defaultDisplayMap[ nodeName ];
4601  
4602 <([a-z][^\/\0><\/\1><[\w\W]+> if ( display ) {
4603 <([a-z][^\/\0><\/\1><[\w\W]+> return display;
4604 <([a-z][^\/\0><\/\1><[\w\W]+> }
4605  
4606 <([a-z][^\/\0><\/\1><[\w\W]+> temp = doc.body.appendChild( doc.createElement( nodeName ) );
4607 <([a-z][^\/\0><\/\1><[\w\W]+> display = jQuery.css( temp, "display" );
4608  
4609 <([a-z][^\/\0><\/\1><[\w\W]+> temp.parentNode.removeChild( temp );
4610  
4611 <([a-z][^\/\0><\/\1><[\w\W]+> if ( display === "none" ) {
4612 <([a-z][^\/\0><\/\1><[\w\W]+> display = "block";
4613 <([a-z][^\/\0><\/\1><[\w\W]+> }
4614 <([a-z][^\/\0><\/\1><[\w\W]+> defaultDisplayMap[ nodeName ] = display;
4615  
4616 <([a-z][^\/\0><\/\1><[\w\W]+> return display;
4617 <([a-z][^\/\0><\/\1><[\w\W]+>}
4618  
4619 <([a-z][^\/\0><\/\1><[\w\W]+>function showHide( elements, show ) {
4620 <([a-z][^\/\0><\/\1><[\w\W]+> var display, elem,
4621 <([a-z][^\/\0><\/\1><[\w\W]+> values = [],
4622 <([a-z][^\/\0><\/\1><[\w\W]+> index = 0,
4623 <([a-z][^\/\0><\/\1><[\w\W]+> length = elements.length;
4624  
4625 <([a-z][^\/\0><\/\1><[\w\W]+> // Determine new display value for elements that need to change
4626 <([a-z][^\/\0><\/\1><[\w\W]+> for ( ; index < length; index++ ) {
4627 <([a-z][^\/\0><\/\1><[\w\W]+> elem = elements[ index ];
4628 <([a-z][^\/\0><\/\1><[\w\W]+> if ( !elem.style ) {
4629 <([a-z][^\/\0><\/\1><[\w\W]+> continue;
4630 <([a-z][^\/\0><\/\1><[\w\W]+> }
4631  
4632 <([a-z][^\/\0><\/\1><[\w\W]+> display = elem.style.display;
4633 <([a-z][^\/\0><\/\1><[\w\W]+> if ( show ) {
4634  
4635 <([a-z][^\/\0><\/\1><[\w\W]+> // Since we force visibility upon cascade-hidden elements, an immediate (and slow)
4636 <([a-z][^\/\0><\/\1><[\w\W]+> // check is required in this first loop unless we have a nonempty display value (either
4637 <([a-z][^\/\0><\/\1><[\w\W]+> // inline or about-to-be-restored)
4638 <([a-z][^\/\0><\/\1><[\w\W]+> if ( display === "none" ) {
4639 <([a-z][^\/\0><\/\1><[\w\W]+> values[ index ] = dataPriv.get( elem, "display" ) || null;
4640 <([a-z][^\/\0><\/\1><[\w\W]+> if ( !values[ index ] ) {
4641 <([a-z][^\/\0><\/\1><[\w\W]+> elem.style.display = "";
4642 <([a-z][^\/\0><\/\1><[\w\W]+> }
4643 <([a-z][^\/\0><\/\1><[\w\W]+> }
4644 <([a-z][^\/\0><\/\1><[\w\W]+> if ( elem.style.display === "" && isHiddenWithinTree( elem ) ) {
4645 <([a-z][^\/\0><\/\1><[\w\W]+> values[ index ] = getDefaultDisplay( elem );
4646 <([a-z][^\/\0><\/\1><[\w\W]+> }
4647 <([a-z][^\/\0><\/\1><[\w\W]+> } else {
4648 <([a-z][^\/\0><\/\1><[\w\W]+> if ( display !== "none" ) {
4649 <([a-z][^\/\0><\/\1><[\w\W]+> values[ index ] = "none";
4650  
4651 <([a-z][^\/\0><\/\1><[\w\W]+> // Remember what we're overwriting
4652 <([a-z][^\/\0><\/\1><[\w\W]+> dataPriv.set( elem, "display", display );
4653 <([a-z][^\/\0><\/\1><[\w\W]+> }
4654 <([a-z][^\/\0><\/\1><[\w\W]+> }
4655 <([a-z][^\/\0><\/\1><[\w\W]+> }
4656  
4657 <([a-z][^\/\0><\/\1><[\w\W]+> // Set the display of the elements in a second loop to avoid constant reflow
4658 <([a-z][^\/\0><\/\1><[\w\W]+> for ( index = 0; index < length; index++ ) {
4659 <([a-z][^\/\0><\/\1><[\w\W]+> if ( values[ index ] != null ) {
4660 <([a-z][^\/\0><\/\1><[\w\W]+> elements[ index ].style.display = values[ index ];
4661 <([a-z][^\/\0><\/\1><[\w\W]+> }
4662 <([a-z][^\/\0><\/\1><[\w\W]+> }
4663  
4664 <([a-z][^\/\0><\/\1><[\w\W]+> return elements;
4665 <([a-z][^\/\0><\/\1><[\w\W]+>}
4666  
4667 <([a-z][^\/\0><\/\1><[\w\W]+>jQuery.fn.extend( {
4668 <([a-z][^\/\0><\/\1><[\w\W]+> show: function() {
4669 <([a-z][^\/\0><\/\1><[\w\W]+> return showHide( this, true );
4670 <([a-z][^\/\0><\/\1><[\w\W]+> },
4671 <([a-z][^\/\0><\/\1><[\w\W]+> hide: function() {
4672 <([a-z][^\/\0><\/\1><[\w\W]+> return showHide( this );
4673 <([a-z][^\/\0><\/\1><[\w\W]+> },
4674 <([a-z][^\/\0><\/\1><[\w\W]+> toggle: function( state ) {
4675 <([a-z][^\/\0><\/\1><[\w\W]+> if ( typeof state === "boolean" ) {
4676 <([a-z][^\/\0><\/\1><[\w\W]+> return state ? this.show() : this.hide();
4677 <([a-z][^\/\0><\/\1><[\w\W]+> }
4678  
4679 <([a-z][^\/\0><\/\1><[\w\W]+> return this.each( function() {
4680 <([a-z][^\/\0><\/\1><[\w\W]+> if ( isHiddenWithinTree( this ) ) {
4681 <([a-z][^\/\0><\/\1><[\w\W]+> jQuery( this ).show();
4682 <([a-z][^\/\0><\/\1><[\w\W]+> } else {
4683 <([a-z][^\/\0><\/\1><[\w\W]+> jQuery( this ).hide();
4684 <([a-z][^\/\0><\/\1><[\w\W]+> }
4685 <([a-z][^\/\0><\/\1><[\w\W]+> } );
4686 <([a-z][^\/\0><\/\1><[\w\W]+> }
4687 <([a-z][^\/\0><\/\1><[\w\W]+>} );
4688 <([a-z][^\/\0><\/\1><[\w\W]+>var rcheckableType = ( /^(?:checkbox|radio)$/i );
4689  
4690 <([a-z][^\/\0><\/\1><[\w\W]+>var rtagName = ( /<([a-z][^\/\0>\x20\t\r\n\f]+)/i );
4691  
4692 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0>var rscriptType = ( /^$|\/(?:java|ecma)script/i );
4693  
4694  
4695  
4696 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0>// We have to close these tags to support XHTML (#13200)
4697 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0>var wrapMap = {
4698  
4699 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0> // Support: IE <=9 only
4700 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0> option: [ 1, "<select multiple='multiple'>", "</select>" ],
4701  
4702 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0> // XHTML parsers do not magically insert elements in the
4703 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0> // same way that tag soup parsers do. So we cannot shorten
4704 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0> // this by omitting <tbody> or other required elements.
4705 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0> thead: [ 1, "<table>", "</table>" ],
4706 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0> col: [ 2, "<table><colgroup>", "</colgroup></table>" ],
4707 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0> tr: [ 2, "<table><tbody>", "</tbody></table>" ],
4708 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0> td: [ 3, "<table><tbody><tr>", "</tr></tbody></table>" ],
4709  
4710 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0> _default: [ 0, "", "" ]
4711 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0>};
4712  
4713 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0>// Support: IE <=9 only
4714 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0>wrapMap.optgroup = wrapMap.option;
4715  
4716 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0>wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead;
4717 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0>wrapMap.th = wrapMap.td;
4718  
4719  
4720 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0>function getAll( context, tag ) {
4721  
4722 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0> // Support: IE <=9 - 11 only
4723 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0> // Use typeof to avoid zero-argument method invocation on host objects (#15151)
4724 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0> var ret;
4725  
4726 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0> if ( typeof context.getElementsByTagName !== "undefined" ) {
4727 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0> ret = context.getElementsByTagName( tag || "*" );
4728  
4729 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0> } else if ( typeof context.querySelectorAll !== "undefined" ) {
4730 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0> ret = context.querySelectorAll( tag || "*" );
4731  
4732 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0> } else {
4733 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0> ret = [];
4734 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0> }
4735  
4736 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0> if ( tag === undefined || tag && jQuery.nodeName( context, tag ) ) {
4737 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0> return jQuery.merge( [ context ], ret );
4738 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0> }
4739  
4740 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0> return ret;
4741 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0>}
4742  
4743  
4744 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0>// Mark scripts as having already been evaluated
4745 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0>function setGlobalEval( elems, refElements ) {
4746 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0> var i = 0,
4747 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0> l = elems.length;
4748  
4749 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0> for ( ; i < l; i++ ) {
4750 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0> dataPriv.set(
4751 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0> elems[ i ],
4752 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0> "globalEval",
4753 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0> !refElements || dataPriv.get( refElements[ i ], "globalEval" )
4754 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0> );
4755 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0> }
4756 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0>}
4757  
4758  
4759 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0>var rhtml = /<|&#?\w+;/;
4760  
4761 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/function buildFragment( elems, context, scripts, selection, ignored ) {
4762 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ var elem, tmp, tag, wrap, contains, j,
4763 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ fragment = context.createDocumentFragment(),
4764 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ nodes = [],
4765 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ i = 0,
4766 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ l = elems.length;
4767  
4768 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ for ( ; i < l; i++ ) {
4769 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ elem = elems[ i ];
4770  
4771 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ if ( elem || elem === 0 ) {
4772  
4773 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Add nodes directly
4774 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ if ( jQuery.type( elem ) === "object" ) {
4775  
4776 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Support: Android <=4.0 only, PhantomJS 1 only
4777 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // push.apply(_, arraylike) throws on ancient WebKit
4778 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem );
4779  
4780 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Convert non-html into a text node
4781 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ } else if ( !rhtml.test( elem ) ) {
4782 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ nodes.push( context.createTextNode( elem ) );
4783  
4784 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Convert html into DOM nodes
4785 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ } else {
4786 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ tmp = tmp || fragment.appendChild( context.createElement( "div" ) );
4787  
4788 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Deserialize a standard representation
4789 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ tag = ( rtagName.exec( elem ) || [ "", "" ] )[ 1 ].toLowerCase();
4790 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ wrap = wrapMap[ tag ] || wrapMap._default;
4791 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ tmp.innerHTML = wrap[ 1 ] + jQuery.htmlPrefilter( elem ) + wrap[ 2 ];
4792  
4793 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Descend through wrappers to the right content
4794 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ j = wrap[ 0 ];
4795 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ while ( j-- ) {
4796 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ tmp = tmp.lastChild;
4797 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
4798  
4799 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Support: Android <=4.0 only, PhantomJS 1 only
4800 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // push.apply(_, arraylike) throws on ancient WebKit
4801 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ jQuery.merge( nodes, tmp.childNodes );
4802  
4803 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Remember the top-level container
4804 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ tmp = fragment.firstChild;
4805  
4806 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Ensure the created nodes are orphaned (#12392)
4807 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ tmp.textContent = "";
4808 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
4809 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
4810 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
4811  
4812 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Remove wrapper from fragment
4813 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ fragment.textContent = "";
4814  
4815 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ i = 0;
4816 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ while ( ( elem = nodes[ i++ ] ) ) {
4817  
4818 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Skip elements already in the context collection (trac-4087)
4819 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ if ( selection && jQuery.inArray( elem, selection ) > -1 ) {
4820 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ if ( ignored ) {
4821 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ ignored.push( elem );
4822 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
4823 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ continue;
4824 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
4825  
4826 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ contains = jQuery.contains( elem.ownerDocument, elem );
4827  
4828 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Append to fragment
4829 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ tmp = getAll( fragment.appendChild( elem ), "script" );
4830  
4831 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Preserve script evaluation history
4832 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ if ( contains ) {
4833 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ setGlobalEval( tmp );
4834 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
4835  
4836 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Capture executables
4837 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ if ( scripts ) {
4838 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ j = 0;
4839 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ while ( ( elem = tmp[ j++ ] ) ) {
4840 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ if ( rscriptType.test( elem.type || "" ) ) {
4841 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ scripts.push( elem );
4842 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
4843 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
4844 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
4845 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
4846  
4847 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ return fragment;
4848 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/}
4849  
4850  
4851 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/( function() {
4852 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ var fragment = document.createDocumentFragment(),
4853 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ div = fragment.appendChild( document.createElement( "div" ) ),
4854 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ input = document.createElement( "input" );
4855  
4856 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Support: Android 4.0 - 4.3 only
4857 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Check state lost if the name is set (#11217)
4858 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Support: Windows Web Apps (WWA)
4859 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // `name` and `type` must use .setAttribute for WWA (#14901)
4860 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ input.setAttribute( "type", "radio" );
4861 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ input.setAttribute( "checked", "checked" );
4862 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ input.setAttribute( "name", "t" );
4863  
4864 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ div.appendChild( input );
4865  
4866 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Support: Android <=4.1 only
4867 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Older WebKit doesn't clone checked state correctly in fragments
4868 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ support.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked;
4869  
4870 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Support: IE <=11 only
4871 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Make sure textarea (and checkbox) defaultValue is properly cloned
4872 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ div.innerHTML = "<textarea>x</textarea>";
4873 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ support.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue;
4874 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/} )();
4875 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/var documentElement = document.documentElement;
4876  
4877  
4878  
4879 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/var
4880 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ rkeyEvent = /^key/,
4881 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ rmouseEvent = /^(?:mouse|pointer|contextmenu|drag|drop)|click/,
4882 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ rtypenamespace = /^([^.]*)(?:\.(.+)|)/;
4883  
4884 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/function returnTrue() {
4885 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ return true;
4886 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/}
4887  
4888 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/function returnFalse() {
4889 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ return false;
4890 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/}
4891  
4892 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/// Support: IE <=9 only
4893 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/// See #13393 for more info
4894 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/function safeActiveElement() {
4895 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ try {
4896 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ return document.activeElement;
4897 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ } catch ( err ) { }
4898 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/}
4899  
4900 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/function on( elem, types, selector, data, fn, one ) {
4901 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ var origFn, type;
4902  
4903 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Types can be a map of types/handlers
4904 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ if ( typeof types === "object" ) {
4905  
4906 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // ( types-Object, selector, data )
4907 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ if ( typeof selector !== "string" ) {
4908  
4909 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // ( types-Object, data )
4910 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ data = data || selector;
4911 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ selector = undefined;
4912 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
4913 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ for ( type in types ) {
4914 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ on( elem, type, selector, data, types[ type ], one );
4915 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
4916 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ return elem;
4917 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
4918  
4919 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ if ( data == null && fn == null ) {
4920  
4921 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // ( types, fn )
4922 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ fn = selector;
4923 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ data = selector = undefined;
4924 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ } else if ( fn == null ) {
4925 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ if ( typeof selector === "string" ) {
4926  
4927 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // ( types, selector, fn )
4928 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ fn = data;
4929 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ data = undefined;
4930 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ } else {
4931  
4932 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // ( types, data, fn )
4933 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ fn = data;
4934 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ data = selector;
4935 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ selector = undefined;
4936 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
4937 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
4938 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ if ( fn === false ) {
4939 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ fn = returnFalse;
4940 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ } else if ( !fn ) {
4941 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ return elem;
4942 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
4943  
4944 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ if ( one === 1 ) {
4945 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ origFn = fn;
4946 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ fn = function( event ) {
4947  
4948 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Can use an empty set, since event contains the info
4949 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ jQuery().off( event );
4950 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ return origFn.apply( this, arguments );
4951 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ };
4952  
4953 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Use same guid so caller can remove using origFn
4954 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ );
4955 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
4956 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ return elem.each( function() {
4957 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ jQuery.event.add( this, types, fn, data, selector );
4958 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ } );
4959 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/}
4960  
4961 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;//*
4962 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ * Helper functions for managing events -- not part of the public interface.
4963 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ * Props to Dean Edwards' addEvent library for many of the ideas.
4964 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ */
4965 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/jQuery.event = {
4966  
4967 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ global: {},
4968  
4969 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ add: function( elem, types, handler, data, selector ) {
4970  
4971 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ var handleObjIn, eventHandle, tmp,
4972 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ events, t, handleObj,
4973 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ special, handlers, type, namespaces, origType,
4974 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ elemData = dataPriv.get( elem );
4975  
4976 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Don't attach events to noData or text/comment nodes (but allow plain objects)
4977 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ if ( !elemData ) {
4978 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ return;
4979 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
4980  
4981 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Caller can pass in an object of custom data in lieu of the handler
4982 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ if ( handler.handler ) {
4983 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ handleObjIn = handler;
4984 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ handler = handleObjIn.handler;
4985 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ selector = handleObjIn.selector;
4986 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
4987  
4988 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Ensure that invalid selectors throw exceptions at attach time
4989 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Evaluate against documentElement in case elem is a non-element node (e.g., document)
4990 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ if ( selector ) {
4991 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ jQuery.find.matchesSelector( documentElement, selector );
4992 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
4993  
4994 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Make sure that the handler has a unique ID, used to find/remove it later
4995 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ if ( !handler.guid ) {
4996 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ handler.guid = jQuery.guid++;
4997 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
4998  
4999 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Init the element's event structure and main handler, if this is the first
5000 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ if ( !( events = elemData.events ) ) {
5001 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ events = elemData.events = {};
5002 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
5003 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ if ( !( eventHandle = elemData.handle ) ) {
5004 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ eventHandle = elemData.handle = function( e ) {
5005  
5006 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Discard the second event of a jQuery.event.trigger() and
5007 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // when an event is called after a page has unloaded
5008 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ return typeof jQuery !== "undefined" && jQuery.event.triggered !== e.type ?
5009 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ jQuery.event.dispatch.apply( elem, arguments ) : undefined;
5010 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ };
5011 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
5012  
5013 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Handle multiple events separated by a space
5014 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ types = ( types || "" ).match( rnothtmlwhite ) || [ "" ];
5015 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ t = types.length;
5016 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ while ( t-- ) {
5017 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ tmp = rtypenamespace.exec( types[ t ] ) || [];
5018 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ type = origType = tmp[ 1 ];
5019 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort();
5020  
5021 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // There *must* be a type, no attaching namespace-only handlers
5022 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ if ( !type ) {
5023 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ continue;
5024 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
5025  
5026 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // If event changes its type, use the special event handlers for the changed type
5027 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ special = jQuery.event.special[ type ] || {};
5028  
5029 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // If selector defined, determine special event api type, otherwise given type
5030 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ type = ( selector ? special.delegateType : special.bindType ) || type;
5031  
5032 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Update special based on newly reset type
5033 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ special = jQuery.event.special[ type ] || {};
5034  
5035 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // handleObj is passed to all event handlers
5036 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ handleObj = jQuery.extend( {
5037 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ type: type,
5038 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ origType: origType,
5039 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ data: data,
5040 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ handler: handler,
5041 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ guid: handler.guid,
5042 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ selector: selector,
5043 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ needsContext: selector && jQuery.expr.match.needsContext.test( selector ),
5044 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ namespace: namespaces.join( "." )
5045 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }, handleObjIn );
5046  
5047 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Init the event handler queue if we're the first
5048 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ if ( !( handlers = events[ type ] ) ) {
5049 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ handlers = events[ type ] = [];
5050 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ handlers.delegateCount = 0;
5051  
5052 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Only use addEventListener if the special events handler returns false
5053 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ if ( !special.setup ||
5054 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ special.setup.call( elem, data, namespaces, eventHandle ) === false ) {
5055  
5056 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ if ( elem.addEventListener ) {
5057 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ elem.addEventListener( type, eventHandle );
5058 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
5059 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
5060 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
5061  
5062 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ if ( special.add ) {
5063 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ special.add.call( elem, handleObj );
5064  
5065 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ if ( !handleObj.handler.guid ) {
5066 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ handleObj.handler.guid = handler.guid;
5067 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
5068 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
5069  
5070 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Add to the element's handler list, delegates in front
5071 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ if ( selector ) {
5072 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ handlers.splice( handlers.delegateCount++, 0, handleObj );
5073 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ } else {
5074 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ handlers.push( handleObj );
5075 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
5076  
5077 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Keep track of which events have ever been used, for event optimization
5078 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ jQuery.event.global[ type ] = true;
5079 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
5080  
5081 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ },
5082  
5083 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Detach an event or set of events from an element
5084 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ remove: function( elem, types, handler, selector, mappedTypes ) {
5085  
5086 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ var j, origCount, tmp,
5087 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ events, t, handleObj,
5088 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ special, handlers, type, namespaces, origType,
5089 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ elemData = dataPriv.hasData( elem ) && dataPriv.get( elem );
5090  
5091 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ if ( !elemData || !( events = elemData.events ) ) {
5092 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ return;
5093 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
5094  
5095 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Once for each type.namespace in types; type may be omitted
5096 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ types = ( types || "" ).match( rnothtmlwhite ) || [ "" ];
5097 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ t = types.length;
5098 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ while ( t-- ) {
5099 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ tmp = rtypenamespace.exec( types[ t ] ) || [];
5100 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ type = origType = tmp[ 1 ];
5101 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort();
5102  
5103 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Unbind all events (on this namespace, if provided) for the element
5104 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ if ( !type ) {
5105 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ for ( type in events ) {
5106 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ jQuery.event.remove( elem, type + types[ t ], handler, selector, true );
5107 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
5108 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ continue;
5109 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
5110  
5111 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ special = jQuery.event.special[ type ] || {};
5112 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ type = ( selector ? special.delegateType : special.bindType ) || type;
5113 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ handlers = events[ type ] || [];
5114 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ tmp = tmp[ 2 ] &&
5115 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" );
5116  
5117 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Remove matching events
5118 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ origCount = j = handlers.length;
5119 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ while ( j-- ) {
5120 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ handleObj = handlers[ j ];
5121  
5122 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ if ( ( mappedTypes || origType === handleObj.origType ) &&
5123 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ ( !handler || handler.guid === handleObj.guid ) &&
5124 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ ( !tmp || tmp.test( handleObj.namespace ) ) &&
5125 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ ( !selector || selector === handleObj.selector ||
5126 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ selector === "**" && handleObj.selector ) ) {
5127 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ handlers.splice( j, 1 );
5128  
5129 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ if ( handleObj.selector ) {
5130 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ handlers.delegateCount--;
5131 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
5132 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ if ( special.remove ) {
5133 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ special.remove.call( elem, handleObj );
5134 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
5135 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
5136 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
5137  
5138 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Remove generic event handler if we removed something and no more handlers exist
5139 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // (avoids potential for endless recursion during removal of special event handlers)
5140 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ if ( origCount && !handlers.length ) {
5141 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ if ( !special.teardown ||
5142 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ special.teardown.call( elem, namespaces, elemData.handle ) === false ) {
5143  
5144 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ jQuery.removeEvent( elem, type, elemData.handle );
5145 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
5146  
5147 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ delete events[ type ];
5148 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
5149 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
5150  
5151 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Remove data and the expando if it's no longer used
5152 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ if ( jQuery.isEmptyObject( events ) ) {
5153 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ dataPriv.remove( elem, "handle events" );
5154 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
5155 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ },
5156  
5157 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ dispatch: function( nativeEvent ) {
5158  
5159 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Make a writable jQuery.Event from the native event object
5160 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ var event = jQuery.event.fix( nativeEvent );
5161  
5162 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ var i, j, ret, matched, handleObj, handlerQueue,
5163 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ args = new Array( arguments.length ),
5164 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ handlers = ( dataPriv.get( this, "events" ) || {} )[ event.type ] || [],
5165 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ special = jQuery.event.special[ event.type ] || {};
5166  
5167 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Use the fix-ed jQuery.Event rather than the (read-only) native event
5168 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ args[ 0 ] = event;
5169  
5170 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ for ( i = 1; i < arguments.length; i++ ) {
5171 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ args[ i ] = arguments[ i ];
5172 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
5173  
5174 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ event.delegateTarget = this;
5175  
5176 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Call the preDispatch hook for the mapped type, and let it bail if desired
5177 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) {
5178 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ return;
5179 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
5180  
5181 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Determine handlers
5182 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ handlerQueue = jQuery.event.handlers.call( this, event, handlers );
5183  
5184 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Run delegates first; they may want to stop propagation beneath us
5185 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ i = 0;
5186 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ while ( ( matched = handlerQueue[ i++ ] ) && !event.isPropagationStopped() ) {
5187 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ event.currentTarget = matched.elem;
5188  
5189 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ j = 0;
5190 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ while ( ( handleObj = matched.handlers[ j++ ] ) &&
5191 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ !event.isImmediatePropagationStopped() ) {
5192  
5193 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Triggered event must either 1) have no namespace, or 2) have namespace(s)
5194 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // a subset or equal to those in the bound event (both can have no namespace).
5195 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ if ( !event.rnamespace || event.rnamespace.test( handleObj.namespace ) ) {
5196  
5197 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ event.handleObj = handleObj;
5198 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ event.data = handleObj.data;
5199  
5200 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ ret = ( ( jQuery.event.special[ handleObj.origType ] || {} ).handle ||
5201 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ handleObj.handler ).apply( matched.elem, args );
5202  
5203 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ if ( ret !== undefined ) {
5204 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ if ( ( event.result = ret ) === false ) {
5205 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ event.preventDefault();
5206 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ event.stopPropagation();
5207 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
5208 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
5209 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
5210 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
5211 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
5212  
5213 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Call the postDispatch hook for the mapped type
5214 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ if ( special.postDispatch ) {
5215 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ special.postDispatch.call( this, event );
5216 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
5217  
5218 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ return event.result;
5219 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ },
5220  
5221 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ handlers: function( event, handlers ) {
5222 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ var i, handleObj, sel, matchedHandlers, matchedSelectors,
5223 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ handlerQueue = [],
5224 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ delegateCount = handlers.delegateCount,
5225 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ cur = event.target;
5226  
5227 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Find delegate handlers
5228 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ if ( delegateCount &&
5229  
5230 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Support: IE <=9
5231 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Black-hole SVG <use> instance trees (trac-13180)
5232 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ cur.nodeType &&
5233  
5234 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Support: Firefox <=42
5235 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Suppress spec-violating clicks indicating a non-primary pointer button (trac-3861)
5236 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // https://www.w3.org/TR/DOM-Level-3-Events/#event-type-click
5237 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Support: IE 11 only
5238 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // ...but not arrow key "clicks" of radio inputs, which can have `button` -1 (gh-2343)
5239 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ !( event.type === "click" && event.button >= 1 ) ) {
5240  
5241 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ for ( ; cur !== this; cur = cur.parentNode || this ) {
5242  
5243 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Don't check non-elements (#13208)
5244 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Don't process clicks on disabled elements (#6911, #8165, #11382, #11764)
5245 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ if ( cur.nodeType === 1 && !( event.type === "click" && cur.disabled === true ) ) {
5246 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ matchedHandlers = [];
5247 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ matchedSelectors = {};
5248 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ for ( i = 0; i < delegateCount; i++ ) {
5249 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ handleObj = handlers[ i ];
5250  
5251 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Don't conflict with Object.prototype properties (#13203)
5252 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ sel = handleObj.selector + " ";
5253  
5254 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ if ( matchedSelectors[ sel ] === undefined ) {
5255 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ matchedSelectors[ sel ] = handleObj.needsContext ?
5256 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ jQuery( sel, this ).index( cur ) > -1 :
5257 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ jQuery.find( sel, this, null, [ cur ] ).length;
5258 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
5259 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ if ( matchedSelectors[ sel ] ) {
5260 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ matchedHandlers.push( handleObj );
5261 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
5262 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
5263 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ if ( matchedHandlers.length ) {
5264 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ handlerQueue.push( { elem: cur, handlers: matchedHandlers } );
5265 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
5266 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
5267 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
5268 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
5269  
5270 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Add the remaining (directly-bound) handlers
5271 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ cur = this;
5272 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ if ( delegateCount < handlers.length ) {
5273 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ handlerQueue.push( { elem: cur, handlers: handlers.slice( delegateCount ) } );
5274 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
5275  
5276 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ return handlerQueue;
5277 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ },
5278  
5279 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ addProp: function( name, hook ) {
5280 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ Object.defineProperty( jQuery.Event.prototype, name, {
5281 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ enumerable: true,
5282 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ configurable: true,
5283  
5284 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ get: jQuery.isFunction( hook ) ?
5285 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ function() {
5286 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ if ( this.originalEvent ) {
5287 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ return hook( this.originalEvent );
5288 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
5289 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ } :
5290 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ function() {
5291 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ if ( this.originalEvent ) {
5292 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ return this.originalEvent[ name ];
5293 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
5294 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ },
5295  
5296 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ set: function( value ) {
5297 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ Object.defineProperty( this, name, {
5298 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ enumerable: true,
5299 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ configurable: true,
5300 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ writable: true,
5301 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ value: value
5302 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ } );
5303 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
5304 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ } );
5305 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ },
5306  
5307 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ fix: function( originalEvent ) {
5308 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ return originalEvent[ jQuery.expando ] ?
5309 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ originalEvent :
5310 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ new jQuery.Event( originalEvent );
5311 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ },
5312  
5313 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ special: {
5314 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ load: {
5315  
5316 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Prevent triggered image.load events from bubbling to window.load
5317 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ noBubble: true
5318 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ },
5319 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ focus: {
5320  
5321 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Fire native event if possible so blur/focus sequence is correct
5322 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ trigger: function() {
5323 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ if ( this !== safeActiveElement() && this.focus ) {
5324 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ this.focus();
5325 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ return false;
5326 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
5327 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ },
5328 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ delegateType: "focusin"
5329 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ },
5330 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ blur: {
5331 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ trigger: function() {
5332 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ if ( this === safeActiveElement() && this.blur ) {
5333 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ this.blur();
5334 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ return false;
5335 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
5336 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ },
5337 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ delegateType: "focusout"
5338 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ },
5339 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ click: {
5340  
5341 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // For checkbox, fire native event so checked state will be right
5342 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ trigger: function() {
5343 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ if ( this.type === "checkbox" && this.click && jQuery.nodeName( this, "input" ) ) {
5344 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ this.click();
5345 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ return false;
5346 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
5347 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ },
5348  
5349 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // For cross-browser consistency, don't fire native .click() on links
5350 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ _default: function( event ) {
5351 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ return jQuery.nodeName( event.target, "a" );
5352 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
5353 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ },
5354  
5355 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ beforeunload: {
5356 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ postDispatch: function( event ) {
5357  
5358 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Support: Firefox 20+
5359 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Firefox doesn't alert if the returnValue field is not set.
5360 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ if ( event.result !== undefined && event.originalEvent ) {
5361 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ event.originalEvent.returnValue = event.result;
5362 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
5363 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
5364 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
5365 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
5366 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/};
5367  
5368 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/jQuery.removeEvent = function( elem, type, handle ) {
5369  
5370 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // This "if" is needed for plain objects
5371 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ if ( elem.removeEventListener ) {
5372 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ elem.removeEventListener( type, handle );
5373 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
5374 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/};
5375  
5376 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/jQuery.Event = function( src, props ) {
5377  
5378 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Allow instantiation without the 'new' keyword
5379 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ if ( !( this instanceof jQuery.Event ) ) {
5380 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ return new jQuery.Event( src, props );
5381 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
5382  
5383 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Event object
5384 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ if ( src && src.type ) {
5385 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ this.originalEvent = src;
5386 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ this.type = src.type;
5387  
5388 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Events bubbling up the document may have been marked as prevented
5389 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // by a handler lower down the tree; reflect the correct value.
5390 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ this.isDefaultPrevented = src.defaultPrevented ||
5391 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ src.defaultPrevented === undefined &&
5392  
5393 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Support: Android <=2.3 only
5394 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ src.returnValue === false ?
5395 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ returnTrue :
5396 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ returnFalse;
5397  
5398 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Create target properties
5399 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Support: Safari <=6 - 7 only
5400 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Target should not be a text node (#504, #13143)
5401 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ this.target = ( src.target && src.target.nodeType === 3 ) ?
5402 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ src.target.parentNode :
5403 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ src.target;
5404  
5405 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ this.currentTarget = src.currentTarget;
5406 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ this.relatedTarget = src.relatedTarget;
5407  
5408 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Event type
5409 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ } else {
5410 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ this.type = src;
5411 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
5412  
5413 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Put explicitly provided properties onto the event object
5414 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ if ( props ) {
5415 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ jQuery.extend( this, props );
5416 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
5417  
5418 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Create a timestamp if incoming event doesn't have one
5419 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ this.timeStamp = src && src.timeStamp || jQuery.now();
5420  
5421 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Mark it as fixed
5422 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ this[ jQuery.expando ] = true;
5423 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/};
5424  
5425 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding
5426 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/// https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html
5427 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/jQuery.Event.prototype = {
5428 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ constructor: jQuery.Event,
5429 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ isDefaultPrevented: returnFalse,
5430 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ isPropagationStopped: returnFalse,
5431 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ isImmediatePropagationStopped: returnFalse,
5432 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ isSimulated: false,
5433  
5434 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ preventDefault: function() {
5435 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ var e = this.originalEvent;
5436  
5437 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ this.isDefaultPrevented = returnTrue;
5438  
5439 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ if ( e && !this.isSimulated ) {
5440 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ e.preventDefault();
5441 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
5442 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ },
5443 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ stopPropagation: function() {
5444 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ var e = this.originalEvent;
5445  
5446 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ this.isPropagationStopped = returnTrue;
5447  
5448 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ if ( e && !this.isSimulated ) {
5449 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ e.stopPropagation();
5450 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
5451 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ },
5452 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ stopImmediatePropagation: function() {
5453 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ var e = this.originalEvent;
5454  
5455 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ this.isImmediatePropagationStopped = returnTrue;
5456  
5457 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ if ( e && !this.isSimulated ) {
5458 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ e.stopImmediatePropagation();
5459 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
5460  
5461 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ this.stopPropagation();
5462 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
5463 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/};
5464  
5465 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/// Includes all common event props including KeyEvent and MouseEvent specific props
5466 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/jQuery.each( {
5467 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ altKey: true,
5468 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ bubbles: true,
5469 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ cancelable: true,
5470 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ changedTouches: true,
5471 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ ctrlKey: true,
5472 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ detail: true,
5473 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ eventPhase: true,
5474 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ metaKey: true,
5475 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ pageX: true,
5476 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ pageY: true,
5477 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ shiftKey: true,
5478 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ view: true,
5479 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ "char": true,
5480 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ charCode: true,
5481 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ key: true,
5482 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ keyCode: true,
5483 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ button: true,
5484 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ buttons: true,
5485 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ clientX: true,
5486 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ clientY: true,
5487 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ offsetX: true,
5488 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ offsetY: true,
5489 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ pointerId: true,
5490 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ pointerType: true,
5491 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ screenX: true,
5492 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ screenY: true,
5493 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ targetTouches: true,
5494 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ toElement: true,
5495 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ touches: true,
5496  
5497 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ which: function( event ) {
5498 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ var button = event.button;
5499  
5500 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Add which for key events
5501 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ if ( event.which == null && rkeyEvent.test( event.type ) ) {
5502 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ return event.charCode != null ? event.charCode : event.keyCode;
5503 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
5504  
5505 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // Add which for click: 1 === left; 2 === middle; 3 === right
5506 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ if ( !event.which && button !== undefined && rmouseEvent.test( event.type ) ) {
5507 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ if ( button & 1 ) {
5508 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ return 1;
5509 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
5510  
5511 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ if ( button & 2 ) {
5512 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ return 3;
5513 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
5514  
5515 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ if ( button & 4 ) {
5516 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ return 2;
5517 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
5518  
5519 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ return 0;
5520 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
5521  
5522 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ return event.which;
5523 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
5524 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/}, jQuery.event.addProp );
5525  
5526 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/// Create mouseenter/leave events using mouseover/out and event-time checks
5527 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/// so that event delegation works in jQuery.
5528 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/// Do the same for pointerenter/pointerleave and pointerover/pointerout
5529 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;///
5530 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/// Support: Safari 7 only
5531 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/// Safari sends mouseenter too often; see:
5532 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/// https://bugs.chromium.org/p/chromium/issues/detail?id=470258
5533 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/// for the description of the bug (it existed in older Chrome versions as well).
5534 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/jQuery.each( {
5535 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ mouseenter: "mouseover",
5536 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ mouseleave: "mouseout",
5537 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ pointerenter: "pointerover",
5538 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ pointerleave: "pointerout"
5539 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/}, function( orig, fix ) {
5540 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ jQuery.event.special[ orig ] = {
5541 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ delegateType: fix,
5542 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ bindType: fix,
5543  
5544 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ handle: function( event ) {
5545 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ var ret,
5546 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ target = this,
5547 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ related = event.relatedTarget,
5548 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ handleObj = event.handleObj;
5549  
5550 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // For mouseenter/leave call the handler if related is outside the target.
5551 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // NB: No relatedTarget if the mouse left/entered the browser window
5552 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ if ( !related || ( related !== target && !jQuery.contains( target, related ) ) ) {
5553 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ event.type = handleObj.origType;
5554 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ ret = handleObj.handler.apply( this, arguments );
5555 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ event.type = fix;
5556 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
5557 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ return ret;
5558 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
5559 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ };
5560 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/} );
5561  
5562 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/jQuery.fn.extend( {
5563  
5564 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ on: function( types, selector, data, fn ) {
5565 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ return on( this, types, selector, data, fn );
5566 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ },
5567 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ one: function( types, selector, data, fn ) {
5568 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ return on( this, types, selector, data, fn, 1 );
5569 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ },
5570 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ off: function( types, selector, fn ) {
5571 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ var handleObj, type;
5572 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ if ( types && types.preventDefault && types.handleObj ) {
5573  
5574 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // ( event ) dispatched jQuery.Event
5575 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ handleObj = types.handleObj;
5576 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ jQuery( types.delegateTarget ).off(
5577 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ handleObj.namespace ?
5578 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ handleObj.origType + "." + handleObj.namespace :
5579 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ handleObj.origType,
5580 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ handleObj.selector,
5581 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ handleObj.handler
5582 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ );
5583 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ return this;
5584 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
5585 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ if ( typeof types === "object" ) {
5586  
5587 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // ( types-object [, selector] )
5588 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ for ( type in types ) {
5589 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ this.off( type, selector, types[ type ] );
5590 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
5591 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ return this;
5592 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
5593 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ if ( selector === false || typeof selector === "function" ) {
5594  
5595 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // ( types [, fn] )
5596 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ fn = selector;
5597 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ selector = undefined;
5598 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
5599 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ if ( fn === false ) {
5600 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ fn = returnFalse;
5601 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
5602 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ return this.each( function() {
5603 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ jQuery.event.remove( this, types, fn, selector );
5604 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ } );
5605 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ }
5606 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/} );
5607  
5608  
5609 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/var
5610  
5611 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ /* eslint-disable max-len */
5612  
5613 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ // See https://github.com/eslint/eslint/issues/3229
5614 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/ rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>\x20\t\r\n\f]*)[^>]*)\/>/gi,
5615  
5616 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> /* eslint-enable */
5617  
5618 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Support: IE <=10 - 11, Edge 12 - 13
5619 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // In IE/Edge using regex groups here causes severe slowdowns.
5620 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // See https://connect.microsoft.com/IE/feedback/details/1736512/
5621 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> rnoInnerhtml = /i,
5622  
5623 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // checked="checked" or checked
5624 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> rchecked = /checked\s*(?:[^=]|=\s*.checked.)/i,
5625 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> rscriptTypeMasked = /^true\/(.*)/,
5626 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> rcleanScript = /^\s*\s*$/g;
5627  
5628 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>function manipulationTarget( elem, content ) {
5629 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( jQuery.nodeName( elem, "table" ) &&
5630 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> jQuery.nodeName( content.nodeType !== 11 ? content : content.firstChild, "tr" ) ) {
5631  
5632 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> return elem.getElementsByTagName( "tbody" )[ 0 ] || elem;
5633 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
5634  
5635 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> return elem;
5636 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>}
5637  
5638 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>// Replace/restore the type attribute of script elements for safe DOM manipulation
5639 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>function disableScript( elem ) {
5640 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> elem.type = ( elem.getAttribute( "type" ) !== null ) + "/" + elem.type;
5641 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> return elem;
5642 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>}
5643 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>function restoreScript( elem ) {
5644 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> var match = rscriptTypeMasked.exec( elem.type );
5645  
5646 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( match ) {
5647 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> elem.type = match[ 1 ];
5648 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> } else {
5649 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> elem.removeAttribute( "type" );
5650 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
5651  
5652 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> return elem;
5653 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>}
5654  
5655 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>function cloneCopyEvent( src, dest ) {
5656 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> var i, l, type, pdataOld, pdataCur, udataOld, udataCur, events;
5657  
5658 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( dest.nodeType !== 1 ) {
5659 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> return;
5660 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
5661  
5662 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // 1. Copy private data: events, handlers, etc.
5663 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( dataPriv.hasData( src ) ) {
5664 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> pdataOld = dataPriv.access( src );
5665 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> pdataCur = dataPriv.set( dest, pdataOld );
5666 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> events = pdataOld.events;
5667  
5668 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( events ) {
5669 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> delete pdataCur.handle;
5670 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> pdataCur.events = {};
5671  
5672 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> for ( type in events ) {
5673 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> for ( i = 0, l = events[ type ].length; i < l; i++ ) {
5674 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> jQuery.event.add( dest, type, events[ type ][ i ] );
5675 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
5676 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
5677 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
5678 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
5679  
5680 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // 2. Copy user data
5681 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( dataUser.hasData( src ) ) {
5682 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> udataOld = dataUser.access( src );
5683 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> udataCur = jQuery.extend( {}, udataOld );
5684  
5685 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> dataUser.set( dest, udataCur );
5686 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
5687 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>}
5688  
5689 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>// Fix IE bugs, see support tests
5690 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>function fixInput( src, dest ) {
5691 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> var nodeName = dest.nodeName.toLowerCase();
5692  
5693 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Fails to persist the checked state of a cloned checkbox or radio button.
5694 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( nodeName === "input" && rcheckableType.test( src.type ) ) {
5695 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> dest.checked = src.checked;
5696  
5697 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Fails to return the selected option to the default selected state when cloning options
5698 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> } else if ( nodeName === "input" || nodeName === "textarea" ) {
5699 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> dest.defaultValue = src.defaultValue;
5700 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
5701 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>}
5702  
5703 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>function domManip( collection, args, callback, ignored ) {
5704  
5705 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Flatten any nested arrays
5706 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> args = concat.apply( [], args );
5707  
5708 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> var fragment, first, scripts, hasScripts, node, doc,
5709 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> i = 0,
5710 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> l = collection.length,
5711 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> iNoClone = l - 1,
5712 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> value = args[ 0 ],
5713 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> isFunction = jQuery.isFunction( value );
5714  
5715 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // We can't cloneNode fragments that contain checked, in WebKit
5716 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( isFunction ||
5717 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> ( l > 1 && typeof value === "string" &&
5718 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> !support.checkClone && rchecked.test( value ) ) ) {
5719 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> return collection.each( function( index ) {
5720 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> var self = collection.eq( index );
5721 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( isFunction ) {
5722 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> args[ 0 ] = value.call( this, index, self.html() );
5723 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
5724 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> domManip( self, args, callback, ignored );
5725 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> } );
5726 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
5727  
5728 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( l ) {
5729 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> fragment = buildFragment( args, collection[ 0 ].ownerDocument, false, collection, ignored );
5730 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> first = fragment.firstChild;
5731  
5732 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( fragment.childNodes.length === 1 ) {
5733 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> fragment = first;
5734 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
5735  
5736 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Require either new content or an interest in ignored elements to invoke the callback
5737 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( first || ignored ) {
5738 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> scripts = jQuery.map( getAll( fragment, "script" ), disableScript );
5739 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> hasScripts = scripts.length;
5740  
5741 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Use the original fragment for the last item
5742 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // instead of the first because it can end up
5743 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // being emptied incorrectly in certain situations (#8070).
5744 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> for ( ; i < l; i++ ) {
5745 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> node = fragment;
5746  
5747 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( i !== iNoClone ) {
5748 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> node = jQuery.clone( node, true, true );
5749  
5750 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Keep references to cloned scripts for later restoration
5751 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( hasScripts ) {
5752  
5753 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Support: Android <=4.0 only, PhantomJS 1 only
5754 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // push.apply(_, arraylike) throws on ancient WebKit
5755 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> jQuery.merge( scripts, getAll( node, "script" ) );
5756 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
5757 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
5758  
5759 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> callback.call( collection[ i ], node, i );
5760 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
5761  
5762 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( hasScripts ) {
5763 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> doc = scripts[ scripts.length - 1 ].ownerDocument;
5764  
5765 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Reenable scripts
5766 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> jQuery.map( scripts, restoreScript );
5767  
5768 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Evaluate executable scripts on first document insertion
5769 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> for ( i = 0; i < hasScripts; i++ ) {
5770 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> node = scripts[ i ];
5771 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( rscriptType.test( node.type || "" ) &&
5772 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> !dataPriv.access( node, "globalEval" ) &&
5773 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> jQuery.contains( doc, node ) ) {
5774  
5775 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( node.src ) {
5776  
5777 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Optional AJAX dependency, but won't run scripts if not present
5778 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( jQuery._evalUrl ) {
5779 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> jQuery._evalUrl( node.src );
5780 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
5781 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> } else {
5782 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> DOMEval( node.textContent.replace( rcleanScript, "" ), doc );
5783 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
5784 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
5785 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
5786 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
5787 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
5788 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
5789  
5790 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> return collection;
5791 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>}
5792  
5793 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>function remove( elem, selector, keepData ) {
5794 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> var node,
5795 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> nodes = selector ? jQuery.filter( selector, elem ) : elem,
5796 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> i = 0;
5797  
5798 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> for ( ; ( node = nodes[ i ] ) != null; i++ ) {
5799 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( !keepData && node.nodeType === 1 ) {
5800 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> jQuery.cleanData( getAll( node ) );
5801 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
5802  
5803 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( node.parentNode ) {
5804 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( keepData && jQuery.contains( node.ownerDocument, node ) ) {
5805 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> setGlobalEval( getAll( node, "script" ) );
5806 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
5807 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> node.parentNode.removeChild( node );
5808 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
5809 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
5810  
5811 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> return elem;
5812 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>}
5813  
5814 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>jQuery.extend( {
5815 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> htmlPrefilter: function( html ) {
5816 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> return html.replace( rxhtmlTag, "<$1></$2>" );
5817 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> },
5818  
5819 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> clone: function( elem, dataAndEvents, deepDataAndEvents ) {
5820 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> var i, l, srcElements, destElements,
5821 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> clone = elem.cloneNode( true ),
5822 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> inPage = jQuery.contains( elem.ownerDocument, elem );
5823  
5824 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Fix IE cloning issues
5825 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( !support.noCloneChecked && ( elem.nodeType === 1 || elem.nodeType === 11 ) &&
5826 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> !jQuery.isXMLDoc( elem ) ) {
5827  
5828 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // We eschew Sizzle here for performance reasons: https://jsperf.com/getall-vs-sizzle/2
5829 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> destElements = getAll( clone );
5830 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> srcElements = getAll( elem );
5831  
5832 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> for ( i = 0, l = srcElements.length; i < l; i++ ) {
5833 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> fixInput( srcElements[ i ], destElements[ i ] );
5834 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
5835 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
5836  
5837 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Copy the events from the original to the clone
5838 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( dataAndEvents ) {
5839 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( deepDataAndEvents ) {
5840 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> srcElements = srcElements || getAll( elem );
5841 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> destElements = destElements || getAll( clone );
5842  
5843 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> for ( i = 0, l = srcElements.length; i < l; i++ ) {
5844 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> cloneCopyEvent( srcElements[ i ], destElements[ i ] );
5845 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
5846 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> } else {
5847 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> cloneCopyEvent( elem, clone );
5848 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
5849 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
5850  
5851 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Preserve script evaluation history
5852 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> destElements = getAll( clone, "script" );
5853 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( destElements.length > 0 ) {
5854 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> setGlobalEval( destElements, !inPage && getAll( elem, "script" ) );
5855 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
5856  
5857 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Return the cloned set
5858 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> return clone;
5859 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> },
5860  
5861 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> cleanData: function( elems ) {
5862 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> var data, elem, type,
5863 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> special = jQuery.event.special,
5864 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> i = 0;
5865  
5866 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> for ( ; ( elem = elems[ i ] ) !== undefined; i++ ) {
5867 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( acceptData( elem ) ) {
5868 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( ( data = elem[ dataPriv.expando ] ) ) {
5869 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( data.events ) {
5870 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> for ( type in data.events ) {
5871 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( special[ type ] ) {
5872 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> jQuery.event.remove( elem, type );
5873  
5874 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // This is a shortcut to avoid jQuery.event.remove's overhead
5875 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> } else {
5876 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> jQuery.removeEvent( elem, type, data.handle );
5877 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
5878 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
5879 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
5880  
5881 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Support: Chrome <=35 - 45+
5882 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Assign undefined instead of using delete, see Data#remove
5883 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> elem[ dataPriv.expando ] = undefined;
5884 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
5885 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( elem[ dataUser.expando ] ) {
5886  
5887 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Support: Chrome <=35 - 45+
5888 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Assign undefined instead of using delete, see Data#remove
5889 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> elem[ dataUser.expando ] = undefined;
5890 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
5891 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
5892 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
5893 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
5894 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>} );
5895  
5896 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>jQuery.fn.extend( {
5897 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> detach: function( selector ) {
5898 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> return remove( this, selector, true );
5899 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> },
5900  
5901 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> remove: function( selector ) {
5902 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> return remove( this, selector );
5903 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> },
5904  
5905 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> text: function( value ) {
5906 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> return access( this, function( value ) {
5907 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> return value === undefined ?
5908 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> jQuery.text( this ) :
5909 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> this.empty().each( function() {
5910 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {
5911 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> this.textContent = value;
5912 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
5913 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> } );
5914 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }, null, value, arguments.length );
5915 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> },
5916  
5917 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> append: function() {
5918 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> return domManip( this, arguments, function( elem ) {
5919 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {
5920 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> var target = manipulationTarget( this, elem );
5921 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> target.appendChild( elem );
5922 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
5923 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> } );
5924 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> },
5925  
5926 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> prepend: function() {
5927 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> return domManip( this, arguments, function( elem ) {
5928 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {
5929 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> var target = manipulationTarget( this, elem );
5930 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> target.insertBefore( elem, target.firstChild );
5931 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
5932 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> } );
5933 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> },
5934  
5935 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> before: function() {
5936 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> return domManip( this, arguments, function( elem ) {
5937 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( this.parentNode ) {
5938 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> this.parentNode.insertBefore( elem, this );
5939 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
5940 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> } );
5941 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> },
5942  
5943 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> after: function() {
5944 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> return domManip( this, arguments, function( elem ) {
5945 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( this.parentNode ) {
5946 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> this.parentNode.insertBefore( elem, this.nextSibling );
5947 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
5948 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> } );
5949 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> },
5950  
5951 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> empty: function() {
5952 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> var elem,
5953 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> i = 0;
5954  
5955 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> for ( ; ( elem = this[ i ] ) != null; i++ ) {
5956 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( elem.nodeType === 1 ) {
5957  
5958 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Prevent memory leaks
5959 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> jQuery.cleanData( getAll( elem, false ) );
5960  
5961 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Remove any remaining nodes
5962 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> elem.textContent = "";
5963 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
5964 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
5965  
5966 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> return this;
5967 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> },
5968  
5969 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> clone: function( dataAndEvents, deepDataAndEvents ) {
5970 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> dataAndEvents = dataAndEvents == null ? false : dataAndEvents;
5971 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents;
5972  
5973 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> return this.map( function() {
5974 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> return jQuery.clone( this, dataAndEvents, deepDataAndEvents );
5975 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> } );
5976 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> },
5977  
5978 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> html: function( value ) {
5979 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> return access( this, function( value ) {
5980 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> var elem = this[ 0 ] || {},
5981 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> i = 0,
5982 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> l = this.length;
5983  
5984 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( value === undefined && elem.nodeType === 1 ) {
5985 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> return elem.innerHTML;
5986 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
5987  
5988 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // See if we can take a shortcut and just use innerHTML
5989 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( typeof value === "string" && !rnoInnerhtml.test( value ) &&
5990 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> !wrapMap[ ( rtagName.exec( value ) || [ "", "" ] )[ 1 ].toLowerCase() ] ) {
5991  
5992 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> value = jQuery.htmlPrefilter( value );
5993  
5994 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> try {
5995 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> for ( ; i < l; i++ ) {
5996 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> elem = this[ i ] || {};
5997  
5998 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Remove element nodes and prevent memory leaks
5999 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( elem.nodeType === 1 ) {
6000 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> jQuery.cleanData( getAll( elem, false ) );
6001 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> elem.innerHTML = value;
6002 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
6003 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
6004  
6005 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> elem = 0;
6006  
6007 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // If using innerHTML throws an exception, use the fallback method
6008 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> } catch ( e ) {}
6009 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
6010  
6011 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( elem ) {
6012 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> this.empty().append( value );
6013 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
6014 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }, null, value, arguments.length );
6015 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> },
6016  
6017 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> replaceWith: function() {
6018 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> var ignored = [];
6019  
6020 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Make the changes, replacing each non-ignored context element with the new content
6021 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> return domManip( this, arguments, function( elem ) {
6022 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> var parent = this.parentNode;
6023  
6024 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( jQuery.inArray( this, ignored ) < 0 ) {
6025 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> jQuery.cleanData( getAll( this ) );
6026 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( parent ) {
6027 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> parent.replaceChild( elem, this );
6028 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
6029 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
6030  
6031 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Force callback invocation
6032 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }, ignored );
6033 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
6034 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>} );
6035  
6036 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>jQuery.each( {
6037 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> appendTo: "append",
6038 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> prependTo: "prepend",
6039 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> insertBefore: "before",
6040 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> insertAfter: "after",
6041 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> replaceAll: "replaceWith"
6042 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>}, function( name, original ) {
6043 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> jQuery.fn[ name ] = function( selector ) {
6044 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> var elems,
6045 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> ret = [],
6046 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> insert = jQuery( selector ),
6047 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> last = insert.length - 1,
6048 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> i = 0;
6049  
6050 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> for ( ; i <= last; i++ ) {
6051 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> elems = i === last ? this : this.clone( true );
6052 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> jQuery( insert[ i ] )[ original ]( elems );
6053  
6054 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Support: Android <=4.0 only, PhantomJS 1 only
6055 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // .get() because push.apply(_, arraylike) throws on ancient WebKit
6056 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> push.apply( ret, elems.get() );
6057 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
6058  
6059 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> return this.pushStack( ret );
6060 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> };
6061 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>} );
6062 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>var rmargin = ( /^margin/ );
6063  
6064 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>var rnumnonpx = new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" );
6065  
6066 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>var getStyles = function( elem ) {
6067  
6068 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Support: IE <=11 only, Firefox <=30 (#15098, #14150)
6069 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // IE throws on elements created in popups
6070 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // FF meanwhile throws on frame elements through "defaultView.getComputedStyle"
6071 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> var view = elem.ownerDocument.defaultView;
6072  
6073 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( !view || !view.opener ) {
6074 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> view = window;
6075 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
6076  
6077 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> return view.getComputedStyle( elem );
6078 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> };
6079  
6080  
6081  
6082 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>( function() {
6083  
6084 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Executing both pixelPosition & boxSizingReliable tests require only one layout
6085 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // so they're executed at the same time to save the second computation.
6086 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> function computeStyleTests() {
6087  
6088 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // This is a singleton, we need to execute it only once
6089 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( !div ) {
6090 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> return;
6091 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
6092  
6093 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> div.style.cssText =
6094 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> "box-sizing:border-box;" +
6095 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> "position:relative;display:block;" +
6096 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> "margin:auto;border:1px;padding:1px;" +
6097 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> "top:1%;width:50%";
6098 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> div.innerHTML = "";
6099 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> documentElement.appendChild( container );
6100  
6101 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> var divStyle = window.getComputedStyle( div );
6102 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> pixelPositionVal = divStyle.top !== "1%";
6103  
6104 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Support: Android 4.0 - 4.3 only, Firefox <=3 - 44
6105 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> reliableMarginLeftVal = divStyle.marginLeft === "2px";
6106 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> boxSizingReliableVal = divStyle.width === "4px";
6107  
6108 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Support: Android 4.0 - 4.3 only
6109 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Some styles come back with percentage values, even though they shouldn't
6110 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> div.style.marginRight = "50%";
6111 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> pixelMarginRightVal = divStyle.marginRight === "4px";
6112  
6113 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> documentElement.removeChild( container );
6114  
6115 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Nullify the div so it wouldn't be stored in the memory and
6116 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // it will also be a sign that checks already performed
6117 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> div = null;
6118 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
6119  
6120 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> var pixelPositionVal, boxSizingReliableVal, pixelMarginRightVal, reliableMarginLeftVal,
6121 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> container = document.createElement( "div" ),
6122 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> div = document.createElement( "div" );
6123  
6124 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Finish early in limited (non-browser) environments
6125 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( !div.style ) {
6126 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> return;
6127 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
6128  
6129 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Support: IE <=9 - 11 only
6130 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Style of cloned element affects source element cloned (#8908)
6131 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> div.style.backgroundClip = "content-box";
6132 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> div.cloneNode( true ).style.backgroundClip = "";
6133 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> support.clearCloneStyle = div.style.backgroundClip === "content-box";
6134  
6135 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> container.style.cssText = "border:0;width:8px;height:0;top:0;left:-9999px;" +
6136 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> "padding:0;margin-top:1px;position:absolute";
6137 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> container.appendChild( div );
6138  
6139 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> jQuery.extend( support, {
6140 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> pixelPosition: function() {
6141 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> computeStyleTests();
6142 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> return pixelPositionVal;
6143 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> },
6144 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> boxSizingReliable: function() {
6145 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> computeStyleTests();
6146 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> return boxSizingReliableVal;
6147 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> },
6148 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> pixelMarginRight: function() {
6149 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> computeStyleTests();
6150 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> return pixelMarginRightVal;
6151 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> },
6152 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> reliableMarginLeft: function() {
6153 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> computeStyleTests();
6154 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> return reliableMarginLeftVal;
6155 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
6156 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> } );
6157 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>} )();
6158  
6159  
6160 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>function curCSS( elem, name, computed ) {
6161 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> var width, minWidth, maxWidth, ret,
6162 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> style = elem.style;
6163  
6164 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> computed = computed || getStyles( elem );
6165  
6166 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Support: IE <=9 only
6167 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // getPropertyValue is only needed for .css('filter') (#12537)
6168 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( computed ) {
6169 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> ret = computed.getPropertyValue( name ) || computed[ name ];
6170  
6171 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( ret === "" && !jQuery.contains( elem.ownerDocument, elem ) ) {
6172 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> ret = jQuery.style( elem, name );
6173 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
6174  
6175 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // A tribute to the "awesome hack by Dean Edwards"
6176 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Android Browser returns percentage for some values,
6177 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // but width seems to be reliably pixels.
6178 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // This is against the CSSOM draft spec:
6179 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // https://drafts.csswg.org/cssom/#resolved-values
6180 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( !support.pixelMarginRight() && rnumnonpx.test( ret ) && rmargin.test( name ) ) {
6181  
6182 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Remember the original values
6183 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> width = style.width;
6184 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> minWidth = style.minWidth;
6185 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> maxWidth = style.maxWidth;
6186  
6187 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Put in the new values to get a computed value out
6188 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> style.minWidth = style.maxWidth = style.width = ret;
6189 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> ret = computed.width;
6190  
6191 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Revert the changed values
6192 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> style.width = width;
6193 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> style.minWidth = minWidth;
6194 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> style.maxWidth = maxWidth;
6195 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
6196 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
6197  
6198 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> return ret !== undefined ?
6199  
6200 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Support: IE <=9 - 11 only
6201 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // IE returns zIndex value as an integer.
6202 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> ret + "" :
6203 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> ret;
6204 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>}
6205  
6206  
6207 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>function addGetHookIf( conditionFn, hookFn ) {
6208  
6209 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Define the hook, we'll check on the first run if it's really needed.
6210 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> return {
6211 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> get: function() {
6212 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( conditionFn() ) {
6213  
6214 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Hook not needed (or it's not possible to use it due
6215 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // to missing dependency), remove it.
6216 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> delete this.get;
6217 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> return;
6218 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
6219  
6220 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Hook needed; redefine it so that the support test is not executed again.
6221 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> return ( this.get = hookFn ).apply( this, arguments );
6222 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
6223 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> };
6224 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>}
6225  
6226  
6227 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>var
6228  
6229 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Swappable if display is none or starts with table
6230 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // except "table", "table-cell", or "table-caption"
6231 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // See here for display values: https://developer.mozilla.org/en-US/docs/CSS/display
6232 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> rdisplayswap = /^(none|table(?!-c[ea]).+)/,
6233 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> cssShow = { position: "absolute", visibility: "hidden", display: "block" },
6234 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> cssNormalTransform = {
6235 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> letterSpacing: "0",
6236 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> fontWeight: "400"
6237 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> },
6238  
6239 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> cssPrefixes = [ "Webkit", "Moz", "ms" ],
6240 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> emptyStyle = document.createElement( "div" ).style;
6241  
6242 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>// Return a css property mapped to a potentially vendor prefixed property
6243 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>function vendorPropName( name ) {
6244  
6245 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Shortcut for names that are not vendor prefixed
6246 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( name in emptyStyle ) {
6247 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> return name;
6248 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
6249  
6250 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Check for vendor prefixed names
6251 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> var capName = name[ 0 ].toUpperCase() + name.slice( 1 ),
6252 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> i = cssPrefixes.length;
6253  
6254 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> while ( i-- ) {
6255 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> name = cssPrefixes[ i ] + capName;
6256 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( name in emptyStyle ) {
6257 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> return name;
6258 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
6259 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
6260 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>}
6261  
6262 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>function setPositiveNumber( elem, value, subtract ) {
6263  
6264 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Any relative (+/-) values have already been
6265 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // normalized at this point
6266 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> var matches = rcssNum.exec( value );
6267 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> return matches ?
6268  
6269 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Guard against undefined "subtract", e.g., when used as in cssHooks
6270 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> Math.max( 0, matches[ 2 ] - ( subtract || 0 ) ) + ( matches[ 3 ] || "px" ) :
6271 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> value;
6272 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>}
6273  
6274 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>function augmentWidthOrHeight( elem, name, extra, isBorderBox, styles ) {
6275 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> var i,
6276 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> val = 0;
6277  
6278 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // If we already have the right measurement, avoid augmentation
6279 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( extra === ( isBorderBox ? "border" : "content" ) ) {
6280 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> i = 4;
6281  
6282 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Otherwise initialize for horizontal or vertical properties
6283 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> } else {
6284 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> i = name === "width" ? 1 : 0;
6285 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
6286  
6287 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> for ( ; i < 4; i += 2 ) {
6288  
6289 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Both box models exclude margin, so add it if we want it
6290 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( extra === "margin" ) {
6291 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> val += jQuery.css( elem, extra + cssExpand[ i ], true, styles );
6292 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
6293  
6294 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( isBorderBox ) {
6295  
6296 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // border-box includes padding, so remove it if we want content
6297 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( extra === "content" ) {
6298 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> val -= jQuery.css( elem, "padding" + cssExpand[ i ], true, styles );
6299 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
6300  
6301 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // At this point, extra isn't border nor margin, so remove border
6302 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( extra !== "margin" ) {
6303 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> val -= jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles );
6304 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
6305 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> } else {
6306  
6307 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // At this point, extra isn't content, so add padding
6308 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> val += jQuery.css( elem, "padding" + cssExpand[ i ], true, styles );
6309  
6310 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // At this point, extra isn't content nor padding, so add border
6311 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( extra !== "padding" ) {
6312 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> val += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles );
6313 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
6314 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
6315 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
6316  
6317 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> return val;
6318 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>}
6319  
6320 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>function getWidthOrHeight( elem, name, extra ) {
6321  
6322 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Start with offset property, which is equivalent to the border-box value
6323 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> var val,
6324 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> valueIsBorderBox = true,
6325 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> styles = getStyles( elem ),
6326 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> isBorderBox = jQuery.css( elem, "boxSizing", false, styles ) === "border-box";
6327  
6328 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Support: IE <=11 only
6329 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Running getBoundingClientRect on a disconnected node
6330 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // in IE throws an error.
6331 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( elem.getClientRects().length ) {
6332 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> val = elem.getBoundingClientRect()[ name ];
6333 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
6334  
6335 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Some non-html elements return undefined for offsetWidth, so check for null/undefined
6336 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // svg - https://bugzilla.mozilla.org/show_bug.cgi?id=649285
6337 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // MathML - https://bugzilla.mozilla.org/show_bug.cgi?id=491668
6338 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( val <= 0 || val == null ) {
6339  
6340 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Fall back to computed then uncomputed css if necessary
6341 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> val = curCSS( elem, name, styles );
6342 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( val < 0 || val == null ) {
6343 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> val = elem.style[ name ];
6344 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
6345  
6346 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Computed unit is not pixels. Stop here and return.
6347 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( rnumnonpx.test( val ) ) {
6348 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> return val;
6349 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
6350  
6351 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Check for style in case a browser which returns unreliable values
6352 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // for getComputedStyle silently falls back to the reliable elem.style
6353 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> valueIsBorderBox = isBorderBox &&
6354 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> ( support.boxSizingReliable() || val === elem.style[ name ] );
6355  
6356 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Normalize "", auto, and prepare for extra
6357 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> val = parseFloat( val ) || 0;
6358 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
6359  
6360 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Use the active box-sizing model to add/subtract irrelevant styles
6361 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> return ( val +
6362 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> augmentWidthOrHeight(
6363 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> elem,
6364 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> name,
6365 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> extra || ( isBorderBox ? "border" : "content" ),
6366 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> valueIsBorderBox,
6367 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> styles
6368 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> )
6369 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> ) + "px";
6370 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>}
6371  
6372 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>jQuery.extend( {
6373  
6374 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Add in style property hooks for overriding the default
6375 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // behavior of getting and setting a style property
6376 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> cssHooks: {
6377 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> opacity: {
6378 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> get: function( elem, computed ) {
6379 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( computed ) {
6380  
6381 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // We should always get a number back from opacity
6382 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> var ret = curCSS( elem, "opacity" );
6383 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> return ret === "" ? "1" : ret;
6384 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
6385 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
6386 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
6387 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> },
6388  
6389 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Don't automatically add "px" to these possibly-unitless properties
6390 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> cssNumber: {
6391 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> "animationIterationCount": true,
6392 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> "columnCount": true,
6393 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> "fillOpacity": true,
6394 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> "flexGrow": true,
6395 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> "flexShrink": true,
6396 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> "fontWeight": true,
6397 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> "lineHeight": true,
6398 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> "opacity": true,
6399 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> "order": true,
6400 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> "orphans": true,
6401 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> "widows": true,
6402 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> "zIndex": true,
6403 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> "zoom": true
6404 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> },
6405  
6406 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Add in properties whose names you wish to fix before
6407 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // setting or getting the value
6408 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> cssProps: {
6409 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> "float": "cssFloat"
6410 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> },
6411  
6412 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Get and set the style property on a DOM Node
6413 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> style: function( elem, name, value, extra ) {
6414  
6415 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Don't set styles on text and comment nodes
6416 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) {
6417 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> return;
6418 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
6419  
6420 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Make sure that we're working with the right name
6421 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> var ret, type, hooks,
6422 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> origName = jQuery.camelCase( name ),
6423 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> style = elem.style;
6424  
6425 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> name = jQuery.cssProps[ origName ] ||
6426 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> ( jQuery.cssProps[ origName ] = vendorPropName( origName ) || origName );
6427  
6428 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Gets hook for the prefixed version, then unprefixed version
6429 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];
6430  
6431 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Check if we're setting a value
6432 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( value !== undefined ) {
6433 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> type = typeof value;
6434  
6435 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Convert "+=" or "-=" to relative numbers (#7345)
6436 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( type === "string" && ( ret = rcssNum.exec( value ) ) && ret[ 1 ] ) {
6437 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> value = adjustCSS( elem, name, ret );
6438  
6439 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Fixes bug #9237
6440 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> type = "number";
6441 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
6442  
6443 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Make sure that null and NaN values aren't set (#7116)
6444 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( value == null || value !== value ) {
6445 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> return;
6446 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
6447  
6448 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // If a number was passed in, add the unit (except for certain CSS properties)
6449 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( type === "number" ) {
6450 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> value += ret && ret[ 3 ] || ( jQuery.cssNumber[ origName ] ? "" : "px" );
6451 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
6452  
6453 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // background-* props affect original clone's values
6454 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( !support.clearCloneStyle && value === "" && name.indexOf( "background" ) === 0 ) {
6455 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> style[ name ] = "inherit";
6456 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
6457  
6458 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // If a hook was provided, use that value, otherwise just set the specified value
6459 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( !hooks || !( "set" in hooks ) ||
6460 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> ( value = hooks.set( elem, value, extra ) ) !== undefined ) {
6461  
6462 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> style[ name ] = value;
6463 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
6464  
6465 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> } else {
6466  
6467 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // If a hook was provided get the non-computed value from there
6468 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( hooks && "get" in hooks &&
6469 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> ( ret = hooks.get( elem, false, extra ) ) !== undefined ) {
6470  
6471 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> return ret;
6472 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
6473  
6474 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Otherwise just get the value from the style object
6475 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> return style[ name ];
6476 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
6477 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> },
6478  
6479 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> css: function( elem, name, extra, styles ) {
6480 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> var val, num, hooks,
6481 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> origName = jQuery.camelCase( name );
6482  
6483 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Make sure that we're working with the right name
6484 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> name = jQuery.cssProps[ origName ] ||
6485 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> ( jQuery.cssProps[ origName ] = vendorPropName( origName ) || origName );
6486  
6487 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Try prefixed name followed by the unprefixed name
6488 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];
6489  
6490 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // If a hook was provided get the computed value from there
6491 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( hooks && "get" in hooks ) {
6492 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> val = hooks.get( elem, true, extra );
6493 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
6494  
6495 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Otherwise, if a way to get the computed value exists, use that
6496 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( val === undefined ) {
6497 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> val = curCSS( elem, name, styles );
6498 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
6499  
6500 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Convert "normal" to computed value
6501 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( val === "normal" && name in cssNormalTransform ) {
6502 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> val = cssNormalTransform[ name ];
6503 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
6504  
6505 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Make numeric if forced or a qualifier was provided and val looks numeric
6506 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( extra === "" || extra ) {
6507 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> num = parseFloat( val );
6508 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> return extra === true || isFinite( num ) ? num || 0 : val;
6509 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
6510 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> return val;
6511 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
6512 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>} );
6513  
6514 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>jQuery.each( [ "height", "width" ], function( i, name ) {
6515 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> jQuery.cssHooks[ name ] = {
6516 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> get: function( elem, computed, extra ) {
6517 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( computed ) {
6518  
6519 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Certain elements can have dimension info if we invisibly show them
6520 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // but it must have a current display style that would benefit
6521 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> return rdisplayswap.test( jQuery.css( elem, "display" ) ) &&
6522  
6523 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Support: Safari 8+
6524 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Table columns in Safari have non-zero offsetWidth & zero
6525 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // getBoundingClientRect().width unless display is changed.
6526 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Support: IE <=11 only
6527 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Running getBoundingClientRect on a disconnected node
6528 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // in IE throws an error.
6529 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> ( !elem.getClientRects().length || !elem.getBoundingClientRect().width ) ?
6530 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> swap( elem, cssShow, function() {
6531 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> return getWidthOrHeight( elem, name, extra );
6532 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> } ) :
6533 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> getWidthOrHeight( elem, name, extra );
6534 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
6535 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> },
6536  
6537 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> set: function( elem, value, extra ) {
6538 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> var matches,
6539 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> styles = extra && getStyles( elem ),
6540 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> subtract = extra && augmentWidthOrHeight(
6541 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> elem,
6542 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> name,
6543 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> extra,
6544 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> jQuery.css( elem, "boxSizing", false, styles ) === "border-box",
6545 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> styles
6546 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> );
6547  
6548 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Convert to pixels if value adjustment is needed
6549 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( subtract && ( matches = rcssNum.exec( value ) ) &&
6550 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> ( matches[ 3 ] || "px" ) !== "px" ) {
6551  
6552 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> elem.style[ name ] = value;
6553 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> value = jQuery.css( elem, name );
6554 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
6555  
6556 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> return setPositiveNumber( elem, value, subtract );
6557 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
6558 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> };
6559 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>} );
6560  
6561 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>jQuery.cssHooks.marginLeft = addGetHookIf( support.reliableMarginLeft,
6562 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> function( elem, computed ) {
6563 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( computed ) {
6564 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> return ( parseFloat( curCSS( elem, "marginLeft" ) ) ||
6565 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> elem.getBoundingClientRect().left -
6566 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> swap( elem, { marginLeft: 0 }, function() {
6567 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> return elem.getBoundingClientRect().left;
6568 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> } )
6569 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> ) + "px";
6570 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
6571 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
6572 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>);
6573  
6574 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>// These hooks are used by animate to expand properties
6575 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>jQuery.each( {
6576 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> margin: "",
6577 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> padding: "",
6578 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> border: "Width"
6579 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>}, function( prefix, suffix ) {
6580 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> jQuery.cssHooks[ prefix + suffix ] = {
6581 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> expand: function( value ) {
6582 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> var i = 0,
6583 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> expanded = {},
6584  
6585 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Assumes a single number if not a string
6586 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> parts = typeof value === "string" ? value.split( " " ) : [ value ];
6587  
6588 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> for ( ; i < 4; i++ ) {
6589 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> expanded[ prefix + cssExpand[ i ] + suffix ] =
6590 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> parts[ i ] || parts[ i - 2 ] || parts[ 0 ];
6591 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
6592  
6593 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> return expanded;
6594 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
6595 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> };
6596  
6597 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( !rmargin.test( prefix ) ) {
6598 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> jQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber;
6599 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
6600 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>} );
6601  
6602 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>jQuery.fn.extend( {
6603 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> css: function( name, value ) {
6604 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> return access( this, function( elem, name, value ) {
6605 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> var styles, len,
6606 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> map = {},
6607 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> i = 0;
6608  
6609 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( jQuery.isArray( name ) ) {
6610 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> styles = getStyles( elem );
6611 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> len = name.length;
6612  
6613 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> for ( ; i < len; i++ ) {
6614 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> map[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles );
6615 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
6616  
6617 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> return map;
6618 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
6619  
6620 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> return value !== undefined ?
6621 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> jQuery.style( elem, name, value ) :
6622 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> jQuery.css( elem, name );
6623 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }, name, value, arguments.length > 1 );
6624 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
6625 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>} );
6626  
6627  
6628 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>function Tween( elem, options, prop, end, easing ) {
6629 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> return new Tween.prototype.init( elem, options, prop, end, easing );
6630 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>}
6631 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>jQuery.Tween = Tween;
6632  
6633 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>Tween.prototype = {
6634 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> constructor: Tween,
6635 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> init: function( elem, options, prop, end, easing, unit ) {
6636 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> this.elem = elem;
6637 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> this.prop = prop;
6638 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> this.easing = easing || jQuery.easing._default;
6639 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> this.options = options;
6640 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> this.start = this.now = this.cur();
6641 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> this.end = end;
6642 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> this.unit = unit || ( jQuery.cssNumber[ prop ] ? "" : "px" );
6643 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> },
6644 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> cur: function() {
6645 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> var hooks = Tween.propHooks[ this.prop ];
6646  
6647 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> return hooks && hooks.get ?
6648 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> hooks.get( this ) :
6649 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> Tween.propHooks._default.get( this );
6650 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> },
6651 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> run: function( percent ) {
6652 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> var eased,
6653 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> hooks = Tween.propHooks[ this.prop ];
6654  
6655 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( this.options.duration ) {
6656 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> this.pos = eased = jQuery.easing[ this.easing ](
6657 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> percent, this.options.duration * percent, 0, 1, this.options.duration
6658 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> );
6659 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> } else {
6660 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> this.pos = eased = percent;
6661 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
6662 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> this.now = ( this.end - this.start ) * eased + this.start;
6663  
6664 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( this.options.step ) {
6665 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> this.options.step.call( this.elem, this.now, this );
6666 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
6667  
6668 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( hooks && hooks.set ) {
6669 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> hooks.set( this );
6670 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> } else {
6671 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> Tween.propHooks._default.set( this );
6672 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
6673 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> return this;
6674 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
6675 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>};
6676  
6677 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>Tween.prototype.init.prototype = Tween.prototype;
6678  
6679 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>Tween.propHooks = {
6680 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> _default: {
6681 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> get: function( tween ) {
6682 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> var result;
6683  
6684 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Use a property on the element directly when it is not a DOM element,
6685 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // or when there is no matching style property that exists.
6686 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( tween.elem.nodeType !== 1 ||
6687 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> tween.elem[ tween.prop ] != null && tween.elem.style[ tween.prop ] == null ) {
6688 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> return tween.elem[ tween.prop ];
6689 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
6690  
6691 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Passing an empty string as a 3rd parameter to .css will automatically
6692 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // attempt a parseFloat and fallback to a string if the parse fails.
6693 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Simple values such as "10px" are parsed to Float;
6694 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // complex values such as "rotate(1rad)" are returned as-is.
6695 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> result = jQuery.css( tween.elem, tween.prop, "" );
6696  
6697 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Empty strings, null, undefined and "auto" are converted to 0.
6698 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> return !result || result === "auto" ? 0 : result;
6699 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> },
6700 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> set: function( tween ) {
6701  
6702 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Use step hook for back compat.
6703 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Use cssHook if its there.
6704 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> // Use .style if available and use plain properties where available.
6705 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( jQuery.fx.step[ tween.prop ] ) {
6706 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> jQuery.fx.step[ tween.prop ]( tween );
6707 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> } else if ( tween.elem.nodeType === 1 &&
6708 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> ( tween.elem.style[ jQuery.cssProps[ tween.prop ] ] != null ||
6709 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> jQuery.cssHooks[ tween.prop ] ) ) {
6710 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> jQuery.style( tween.elem, tween.prop, tween.now + tween.unit );
6711 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> } else {
6712 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> tween.elem[ tween.prop ] = tween.now;
6713 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
6714 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
6715 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
6716 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>};
6717  
6718 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>// Support: IE <=9 only
6719 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>// Panic based approach to setting things on disconnected nodes
6720 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>Tween.propHooks.scrollTop = Tween.propHooks.scrollLeft = {
6721 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> set: function( tween ) {
6722 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> if ( tween.elem.nodeType && tween.elem.parentNode ) {
6723 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> tween.elem[ tween.prop ] = tween.now;
6724 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
6725 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> }
6726 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>};
6727  
6728 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>jQuery.easing = {
6729 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> linear: function( p ) {
6730 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> return p;
6731 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> },
6732 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> swing: function( p ) {
6733 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> return 0.5 - Math.cos( p * Math.PI ) / 2;
6734 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> },
6735 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0> _default: "swing"
6736 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>};
6737  
6738 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>jQuery.fx = Tween.prototype.init;
6739  
6740 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>// Back compat <1.8 extension point
6741 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension pointjQuery.fx.step = {};
6742  
6743  
6744  
6745  
6746 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension pointvar
6747 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point fxNow, timerId,
6748 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point rfxtypes = /^(?:toggle|show|hide)$/,
6749 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point rrun = /queueHooks$/;
6750  
6751 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension pointfunction raf() {
6752 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point if ( timerId ) {
6753 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point window.requestAnimationFrame( raf );
6754 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point jQuery.fx.tick();
6755 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point }
6756 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point}
6757  
6758 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point// Animations created synchronously will run synchronously
6759 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension pointfunction createFxNow() {
6760 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point window.setTimeout( function() {
6761 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point fxNow = undefined;
6762 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point } );
6763 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point return ( fxNow = jQuery.now() );
6764 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point}
6765  
6766 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point// Generate parameters to create a standard animation
6767 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension pointfunction genFx( type, includeWidth ) {
6768 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point var which,
6769 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point i = 0,
6770 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point attrs = { height: type };
6771  
6772 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point // If we include width, step value is 1 to do all cssExpand values,
6773 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point // otherwise step value is 2 to skip over Left and Right
6774 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point includeWidth = includeWidth ? 1 : 0;
6775 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point for ( ; i < 4; i += 2 - includeWidth ) {
6776 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) { which = cssExpand[ i ];
6777 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) { attrs[ "margin" + which ] = attrs[ "padding" + which ] = type;
6778 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) { }
6779  
6780 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) { if ( includeWidth ) {
6781 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) { attrs.opacity = attrs.width = type;
6782 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) { }
6783  
6784 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) { return attrs;
6785 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {}
6786  
6787 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {function createTween( value, prop, animation ) {
6788 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) { var tween,
6789 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) { collection = ( Animation.tweeners[ prop ] || [] ).concat( Animation.tweeners[ "*" ] ),
6790 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) { index = 0,
6791 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) { length = collection.length;
6792 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) { for ( ; index < length; index++ ) {
6793 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { if ( ( tween = collection[ index ].call( animation, prop, value ) ) ) {
6794  
6795 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { // We're done with this property
6796 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { return tween;
6797 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { }
6798 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { }
6799 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {}
6800  
6801 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {function defaultPrefilter( elem, props, opts ) {
6802 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { var prop, value, toggle, hooks, oldfire, propTween, restoreDisplay, display,
6803 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { isBox = "width" in props || "height" in props,
6804 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { anim = this,
6805 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { orig = {},
6806 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { style = elem.style,
6807 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { hidden = elem.nodeType && isHiddenWithinTree( elem ),
6808 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { dataShow = dataPriv.get( elem, "fxshow" );
6809  
6810 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { // Queue-skipping animations hijack the fx hooks
6811 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { if ( !opts.queue ) {
6812 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { hooks = jQuery._queueHooks( elem, "fx" );
6813 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { if ( hooks.unqueued == null ) {
6814 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { hooks.unqueued = 0;
6815 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { oldfire = hooks.empty.fire;
6816 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { hooks.empty.fire = function() {
6817 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { if ( !hooks.unqueued ) {
6818 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { oldfire();
6819 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { }
6820 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { };
6821 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { }
6822 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { hooks.unqueued++;
6823  
6824 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { anim.always( function() {
6825  
6826 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { // Ensure the complete handler is called before this completes
6827 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { anim.always( function() {
6828 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { hooks.unqueued--;
6829 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { if ( !jQuery.queue( elem, "fx" ).length ) {
6830 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { hooks.empty.fire();
6831 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { }
6832 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { } );
6833 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { } );
6834 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { }
6835  
6836 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { // Detect show/hide animations
6837 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { for ( prop in props ) {
6838 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { value = props[ prop ];
6839 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { if ( rfxtypes.test( value ) ) {
6840 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { delete props[ prop ];
6841 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { toggle = toggle || value === "toggle";
6842 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { if ( value === ( hidden ? "hide" : "show" ) ) {
6843  
6844 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { // Pretend to be hidden if this is a "show" and
6845 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { // there is still data from a stopped show/hide
6846 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { if ( value === "show" && dataShow && dataShow[ prop ] !== undefined ) {
6847 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { hidden = true;
6848  
6849 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { // Ignore all other no-op show/hide data
6850 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { } else {
6851 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { continue;
6852 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { }
6853 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { }
6854 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { orig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop );
6855 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { }
6856 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { }
6857  
6858 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { // Bail out if this is a no-op like .hide().hide()
6859 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { propTween = !jQuery.isEmptyObject( props );
6860 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { if ( !propTween && jQuery.isEmptyObject( orig ) ) {
6861 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { return;
6862 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { }
6863  
6864 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { // Restrict "overflow" and "display" styles during box animations
6865 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { if ( isBox && elem.nodeType === 1 ) {
6866  
6867 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { // Support: IE <=9 - 11, Edge 12 - 13
6868 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { // Record all 3 overflow attributes because IE does not infer the shorthand
6869 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { // from identically-valued overflowX and overflowY
6870 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { opts.overflow = [ style.overflow, style.overflowX, style.overflowY ];
6871  
6872 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { // Identify a display type, preferring old show/hide data over the CSS cascade
6873 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { restoreDisplay = dataShow && dataShow.display;
6874 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { if ( restoreDisplay == null ) {
6875 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { restoreDisplay = dataPriv.get( elem, "display" );
6876 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { }
6877 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { display = jQuery.css( elem, "display" );
6878 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { if ( display === "none" ) {
6879 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { if ( restoreDisplay ) {
6880 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { display = restoreDisplay;
6881 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { } else {
6882  
6883 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { // Get nonempty value(s) by temporarily forcing visibility
6884 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { showHide( [ elem ], true );
6885 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { restoreDisplay = elem.style.display || restoreDisplay;
6886 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { display = jQuery.css( elem, "display" );
6887 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { showHide( [ elem ] );
6888 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { }
6889 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { }
6890  
6891 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { // Animate inline elements as inline-block
6892 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { if ( display === "inline" || display === "inline-block" && restoreDisplay != null ) {
6893 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { if ( jQuery.css( elem, "float" ) === "none" ) {
6894  
6895 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { // Restore the original display value at the end of pure show/hide animations
6896 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { if ( !propTween ) {
6897 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { anim.done( function() {
6898 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { style.display = restoreDisplay;
6899 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { } );
6900 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { if ( restoreDisplay == null ) {
6901 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { display = style.display;
6902 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { restoreDisplay = display === "none" ? "" : display;
6903 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { }
6904 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { }
6905 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { style.display = "inline-block";
6906 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { }
6907 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { }
6908 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { }
6909  
6910 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { if ( opts.overflow ) {
6911 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { style.overflow = "hidden";
6912 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { anim.always( function() {
6913 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { style.overflow = opts.overflow[ 0 ];
6914 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { style.overflowX = opts.overflow[ 1 ];
6915 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { style.overflowY = opts.overflow[ 2 ];
6916 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { } );
6917 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { }
6918  
6919 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { // Implement show/hide animations
6920 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { propTween = false;
6921 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { for ( prop in orig ) {
6922  
6923 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { // General show/hide setup for this element animation
6924 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { if ( !propTween ) {
6925 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { if ( dataShow ) {
6926 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { if ( "hidden" in dataShow ) {
6927 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { hidden = dataShow.hidden;
6928 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { }
6929 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { } else {
6930 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { dataShow = dataPriv.access( elem, "fxshow", { display: restoreDisplay } );
6931 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { }
6932  
6933 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { // Store hidden/visible for toggle so `.stop().toggle()` "reverses"
6934 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { if ( toggle ) {
6935 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { dataShow.hidden = !hidden;
6936 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { }
6937  
6938 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { // Show elements before animating them
6939 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { if ( hidden ) {
6940 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { showHide( [ elem ], true );
6941 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { }
6942  
6943 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { /* eslint-disable no-loop-func */
6944  
6945 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { anim.done( function() {
6946  
6947 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { /* eslint-enable no-loop-func */
6948  
6949 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { // The final step of a "hide" animation is actually hiding the element
6950 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { if ( !hidden ) {
6951 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { showHide( [ elem ] );
6952 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { }
6953 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { dataPriv.remove( elem, "fxshow" );
6954 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { for ( prop in orig ) {
6955 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { jQuery.style( elem, prop, orig[ prop ] );
6956 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { }
6957 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { } );
6958 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { }
6959  
6960 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { // Per-property setup
6961 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { propTween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim );
6962 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { if ( !( prop in dataShow ) ) {
6963 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { dataShow[ prop ] = propTween.start;
6964 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { if ( hidden ) {
6965 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { propTween.end = propTween.start;
6966 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { propTween.start = 0;
6967 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { }
6968 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { }
6969 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { }
6970 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {}
6971  
6972 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {function propFilter( props, specialEasing ) {
6973 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { var index, name, easing, value, hooks;
6974  
6975 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { // camelCase, specialEasing and expand cssHook pass
6976 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { for ( index in props ) {
6977 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { name = jQuery.camelCase( index );
6978 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { easing = specialEasing[ name ];
6979 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { value = props[ index ];
6980 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { if ( jQuery.isArray( value ) ) {
6981 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { easing = value[ 1 ];
6982 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { value = props[ index ] = value[ 0 ];
6983 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { }
6984  
6985 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { if ( index !== name ) {
6986 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { props[ name ] = value;
6987 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { delete props[ index ];
6988 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { }
6989  
6990 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { hooks = jQuery.cssHooks[ name ];
6991 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { if ( hooks && "expand" in hooks ) {
6992 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { value = hooks.expand( value );
6993 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { delete props[ name ];
6994  
6995 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { // Not quite $.extend, this won't overwrite existing keys.
6996 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { // Reusing 'index' because we have the correct "name"
6997 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { for ( index in value ) {
6998 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { if ( !( index in props ) ) {
6999 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { props[ index ] = value[ index ];
7000 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { specialEasing[ index ] = easing;
7001 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { }
7002 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { }
7003 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { } else {
7004 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { specialEasing[ name ] = easing;
7005 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { }
7006 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { }
7007 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {}
7008  
7009 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {function Animation( elem, properties, options ) {
7010 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { var result,
7011 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { stopped,
7012 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { index = 0,
7013 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { length = Animation.prefilters.length,
7014 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { deferred = jQuery.Deferred().always( function() {
7015  
7016 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { // Don't match elem in the :animated selector
7017 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { delete tick.elem;
7018 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { } ),
7019 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { tick = function() {
7020 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { if ( stopped ) {
7021 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { return false;
7022 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { }
7023 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { var currentTime = fxNow || createFxNow(),
7024 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { remaining = Math.max( 0, animation.startTime + animation.duration - currentTime ),
7025  
7026 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { // Support: Android 2.3 only
7027 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { // Archaic crash bug won't allow us to use `1 - ( 0.5 || 0 )` (#12497)
7028 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { temp = remaining / animation.duration || 0,
7029 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { percent = 1 - temp,
7030 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { index = 0,
7031 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { length = animation.tweens.length;
7032  
7033 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) { for ( ; index < length; index++ ) {
7034 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) { animation.tweens[ index ].run( percent );
7035 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) { }
7036  
7037 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) { deferred.notifyWith( elem, [ animation, percent, remaining ] );
7038  
7039 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) { if ( percent < 1 && length ) {
7040 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) { return remaining;
7041 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) { } else {
7042 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) { deferred.resolveWith( elem, [ animation ] );
7043 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) { return false;
7044 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) { }
7045 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) { },
7046 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) { animation = deferred.promise( {
7047 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) { elem: elem,
7048 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) { props: jQuery.extend( {}, properties ),
7049 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) { opts: jQuery.extend( true, {
7050 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) { specialEasing: {},
7051 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) { easing: jQuery.easing._default
7052 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) { }, options ),
7053 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) { originalProperties: properties,
7054 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) { originalOptions: options,
7055 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) { startTime: fxNow || createFxNow(),
7056 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) { duration: options.duration,
7057 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) { tweens: [],
7058 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) { createTween: function( prop, end ) {
7059 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) { var tween = jQuery.Tween( elem, animation.opts, prop, end,
7060 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) { animation.opts.specialEasing[ prop ] || animation.opts.easing );
7061 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) { animation.tweens.push( tween );
7062 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) { return tween;
7063 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) { },
7064 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) { stop: function( gotoEnd ) {
7065 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) { var index = 0,
7066  
7067 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) { // If we are going to the end, we want to run all the tweens
7068 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) { // otherwise we skip this part
7069 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) { length = gotoEnd ? animation.tweens.length : 0;
7070 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) { if ( stopped ) {
7071 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) { return this;
7072 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) { }
7073 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) { stopped = true;
7074 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) { for ( ; index < length; index++ ) {
7075 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) { animation.tweens[ index ].run( 1 );
7076 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) { }
7077  
7078 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) { // Resolve when we played the last frame; otherwise, reject
7079 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) { if ( gotoEnd ) {
7080 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) { deferred.notifyWith( elem, [ animation, 1, 0 ] );
7081 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) { deferred.resolveWith( elem, [ animation, gotoEnd ] );
7082 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) { } else {
7083 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) { deferred.rejectWith( elem, [ animation, gotoEnd ] );
7084 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) { }
7085 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) { return this;
7086 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) { }
7087 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) { } ),
7088 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) { props = animation.props;
7089  
7090 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) { propFilter( props, animation.opts.specialEasing );
7091  
7092 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) { for ( ; index < length; index++ ) {
7093 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) { result = Animation.prefilters[ index ].call( animation, elem, props, animation.opts );
7094 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) { if ( result ) {
7095 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) { if ( jQuery.isFunction( result.stop ) ) {
7096 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) { jQuery._queueHooks( animation.elem, animation.opts.queue ).stop =
7097 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) { jQuery.proxy( result.stop, result );
7098 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) { }
7099 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) { return result;
7100 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) { }
7101 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) { }
7102  
7103 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) { jQuery.map( props, createTween, animation );
7104  
7105 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) { if ( jQuery.isFunction( animation.opts.start ) ) {
7106 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) { animation.opts.start.call( elem, animation );
7107 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) { }
7108  
7109 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) { jQuery.fx.timer(
7110 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) { jQuery.extend( tick, {
7111 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) { elem: elem,
7112 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) { anim: animation,
7113 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) { queue: animation.opts.queue
7114 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) { } )
7115 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) { );
7116  
7117 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) { // attach callbacks from options
7118 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) { return animation.progress( animation.opts.progress )
7119 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) { .done( animation.opts.done, animation.opts.complete )
7120 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) { .fail( animation.opts.fail )
7121 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) { .always( animation.opts.always );
7122 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {}
7123  
7124 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {jQuery.Animation = jQuery.extend( Animation, {
7125  
7126 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) { tweeners: {
7127 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) { "*": [ function( prop, value ) {
7128 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) { var tween = this.createTween( prop, value );
7129 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) { adjustCSS( tween.elem, prop, rcssNum.exec( value ), tween );
7130 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) { return tween;
7131 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) { } ]
7132 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) { },
7133  
7134 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) { tweener: function( props, callback ) {
7135 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) { if ( jQuery.isFunction( props ) ) {
7136 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) { callback = props;
7137 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) { props = [ "*" ];
7138 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) { } else {
7139 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) { props = props.match( rnothtmlwhite );
7140 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) { }
7141  
7142 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) { var prop,
7143 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) { index = 0,
7144 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) { length = props.length;
7145  
7146 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) { for ( ; index < length; index++ ) {
7147 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { prop = props[ index ];
7148 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { Animation.tweeners[ prop ] = Animation.tweeners[ prop ] || [];
7149 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { Animation.tweeners[ prop ].unshift( callback );
7150 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { }
7151 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { },
7152  
7153 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { prefilters: [ defaultPrefilter ],
7154  
7155 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { prefilter: function( callback, prepend ) {
7156 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { if ( prepend ) {
7157 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { Animation.prefilters.unshift( callback );
7158 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { } else {
7159 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { Animation.prefilters.push( callback );
7160 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { }
7161 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { }
7162 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {} );
7163  
7164 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {jQuery.speed = function( speed, easing, fn ) {
7165 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { var opt = speed && typeof speed === "object" ? jQuery.extend( {}, speed ) : {
7166 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { complete: fn || !fn && easing ||
7167 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { jQuery.isFunction( speed ) && speed,
7168 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { duration: speed,
7169 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { easing: fn && easing || easing && !jQuery.isFunction( easing ) && easing
7170 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { };
7171  
7172 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { // Go to the end state if fx are off or if document is hidden
7173 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { if ( jQuery.fx.off || document.hidden ) {
7174 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { opt.duration = 0;
7175  
7176 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { } else {
7177 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { if ( typeof opt.duration !== "number" ) {
7178 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { if ( opt.duration in jQuery.fx.speeds ) {
7179 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { opt.duration = jQuery.fx.speeds[ opt.duration ];
7180  
7181 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { } else {
7182 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { opt.duration = jQuery.fx.speeds._default;
7183 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { }
7184 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { }
7185 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { }
7186  
7187 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { // Normalize opt.queue - true/undefined/null -> "fx"
7188 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { if ( opt.queue == null || opt.queue === true ) {
7189 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { opt.queue = "fx";
7190 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { }
7191  
7192 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { // Queueing
7193 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { opt.old = opt.complete;
7194  
7195 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { opt.complete = function() {
7196 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { if ( jQuery.isFunction( opt.old ) ) {
7197 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { opt.old.call( this );
7198 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { }
7199  
7200 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { if ( opt.queue ) {
7201 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { jQuery.dequeue( this, opt.queue );
7202 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { }
7203 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { };
7204  
7205 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { return opt;
7206 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {};
7207  
7208 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {jQuery.fn.extend( {
7209 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { fadeTo: function( speed, to, easing, callback ) {
7210  
7211 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { // Show any hidden elements after setting opacity to 0
7212 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { return this.filter( isHiddenWithinTree ).css( "opacity", 0 ).show()
7213  
7214 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { // Animate to the value specified
7215 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { .end().animate( { opacity: to }, speed, easing, callback );
7216 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { },
7217 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { animate: function( prop, speed, easing, callback ) {
7218 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { var empty = jQuery.isEmptyObject( prop ),
7219 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { optall = jQuery.speed( speed, easing, callback ),
7220 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { doAnimation = function() {
7221  
7222 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { // Operate on a copy of prop so per-property easing won't be lost
7223 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { var anim = Animation( this, jQuery.extend( {}, prop ), optall );
7224  
7225 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { // Empty animations, or finishing resolves immediately
7226 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { if ( empty || dataPriv.get( this, "finish" ) ) {
7227 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { anim.stop( true );
7228 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { }
7229 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { };
7230 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { doAnimation.finish = doAnimation;
7231  
7232 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { return empty || optall.queue === false ?
7233 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { this.each( doAnimation ) :
7234 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { this.queue( optall.queue, doAnimation );
7235 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { },
7236 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { stop: function( type, clearQueue, gotoEnd ) {
7237 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { var stopQueue = function( hooks ) {
7238 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { var stop = hooks.stop;
7239 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { delete hooks.stop;
7240 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { stop( gotoEnd );
7241 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { };
7242  
7243 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { if ( typeof type !== "string" ) {
7244 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { gotoEnd = clearQueue;
7245 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { clearQueue = type;
7246 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { type = undefined;
7247 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { }
7248 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { if ( clearQueue && type !== false ) {
7249 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { this.queue( type || "fx", [] );
7250 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { }
7251  
7252 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { return this.each( function() {
7253 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { var dequeue = true,
7254 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { index = type != null && type + "queueHooks",
7255 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { timers = jQuery.timers,
7256 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { data = dataPriv.get( this );
7257  
7258 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { if ( index ) {
7259 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { if ( data[ index ] && data[ index ].stop ) {
7260 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { stopQueue( data[ index ] );
7261 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { }
7262 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { } else {
7263 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { for ( index in data ) {
7264 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { if ( data[ index ] && data[ index ].stop && rrun.test( index ) ) {
7265 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { stopQueue( data[ index ] );
7266 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { }
7267 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { }
7268 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { }
7269  
7270 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { for ( index = timers.length; index--; ) {
7271 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { if ( timers[ index ].elem === this &&
7272 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { ( type == null || timers[ index ].queue === type ) ) {
7273  
7274 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { timers[ index ].anim.stop( gotoEnd );
7275 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { dequeue = false;
7276 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { timers.splice( index, 1 );
7277 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { }
7278 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { }
7279  
7280 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { // Start the next in the queue if the last step wasn't forced.
7281 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { // Timers currently will call their complete callbacks, which
7282 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { // will dequeue but only if they were gotoEnd.
7283 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { if ( dequeue || !gotoEnd ) {
7284 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { jQuery.dequeue( this, type );
7285 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { }
7286 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { } );
7287 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { },
7288 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { finish: function( type ) {
7289 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { if ( type !== false ) {
7290 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { type = type || "fx";
7291 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { }
7292 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { return this.each( function() {
7293 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { var index,
7294 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { data = dataPriv.get( this ),
7295 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { queue = data[ type + "queue" ],
7296 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { hooks = data[ type + "queueHooks" ],
7297 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { timers = jQuery.timers,
7298 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { length = queue ? queue.length : 0;
7299  
7300 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { // Enable finishing flag on private data
7301 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { data.finish = true;
7302  
7303 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { // Empty the queue first
7304 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { jQuery.queue( this, type, [] );
7305  
7306 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { if ( hooks && hooks.stop ) {
7307 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { hooks.stop.call( this, true );
7308 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { }
7309  
7310 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { // Look for any active animations, and finish them
7311 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { for ( index = timers.length; index--; ) {
7312 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { if ( timers[ index ].elem === this && timers[ index ].queue === type ) {
7313 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { timers[ index ].anim.stop( true );
7314 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { timers.splice( index, 1 );
7315 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { }
7316 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { }
7317  
7318 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { // Look for any animations in the old queue and finish them
7319 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { for ( index = 0; index < length; index++ ) {
7320 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { if ( queue[ index ] && queue[ index ].finish ) {
7321 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { queue[ index ].finish.call( this );
7322 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { }
7323 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { }
7324  
7325 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { // Turn off finishing flag
7326 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { delete data.finish;
7327 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { } );
7328 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { }
7329 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {} );
7330  
7331 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {jQuery.each( [ "toggle", "show", "hide" ], function( i, name ) {
7332 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { var cssFn = jQuery.fn[ name ];
7333 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { jQuery.fn[ name ] = function( speed, easing, callback ) {
7334 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { return speed == null || typeof speed === "boolean" ?
7335 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { cssFn.apply( this, arguments ) :
7336 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { this.animate( genFx( name, true ), speed, easing, callback );
7337 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { };
7338 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {} );
7339  
7340 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {// Generate shortcuts for custom animations
7341 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {jQuery.each( {
7342 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { slideDown: genFx( "show" ),
7343 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { slideUp: genFx( "hide" ),
7344 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { slideToggle: genFx( "toggle" ),
7345 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { fadeIn: { opacity: "show" },
7346 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { fadeOut: { opacity: "hide" },
7347 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { fadeToggle: { opacity: "toggle" }
7348 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {}, function( name, props ) {
7349 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { jQuery.fn[ name ] = function( speed, easing, callback ) {
7350 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { return this.animate( props, speed, easing, callback );
7351 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { };
7352 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {} );
7353  
7354 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {jQuery.timers = [];
7355 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {jQuery.fx.tick = function() {
7356 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { var timer,
7357 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { i = 0,
7358 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { timers = jQuery.timers;
7359  
7360 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { fxNow = jQuery.now();
7361  
7362 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) { for ( ; i < timers.length; i++ ) {
7363 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { timer = timers[ i ];
7364  
7365 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Checks the timer has not already been removed
7366 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( !timer() && timers[ i ] === timer ) {
7367 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { timers.splice( i--, 1 );
7368 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7369 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7370  
7371 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( !timers.length ) {
7372 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.fx.stop();
7373 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7374 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { fxNow = undefined;
7375 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {};
7376  
7377 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.fx.timer = function( timer ) {
7378 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.timers.push( timer );
7379 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( timer() ) {
7380 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.fx.start();
7381 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else {
7382 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.timers.pop();
7383 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7384 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {};
7385  
7386 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.fx.interval = 13;
7387 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.fx.start = function() {
7388 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( !timerId ) {
7389 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { timerId = window.requestAnimationFrame ?
7390 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { window.requestAnimationFrame( raf ) :
7391 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { window.setInterval( jQuery.fx.tick, jQuery.fx.interval );
7392 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7393 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {};
7394  
7395 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.fx.stop = function() {
7396 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( window.cancelAnimationFrame ) {
7397 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { window.cancelAnimationFrame( timerId );
7398 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else {
7399 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { window.clearInterval( timerId );
7400 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7401  
7402 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { timerId = null;
7403 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {};
7404  
7405 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.fx.speeds = {
7406 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { slow: 600,
7407 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { fast: 200,
7408  
7409 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Default speed
7410 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { _default: 400
7411 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {};
7412  
7413  
7414 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {// Based off of the plugin by Clint Helfers, with permission.
7415 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {// https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/
7416 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.fn.delay = function( time, type ) {
7417 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time;
7418 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { type = type || "fx";
7419  
7420 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return this.queue( type, function( next, hooks ) {
7421 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { var timeout = window.setTimeout( next, time );
7422 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { hooks.stop = function() {
7423 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { window.clearTimeout( timeout );
7424 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { };
7425 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } );
7426 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {};
7427  
7428  
7429 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {( function() {
7430 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { var input = document.createElement( "input" ),
7431 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { select = document.createElement( "select" ),
7432 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { opt = select.appendChild( document.createElement( "option" ) );
7433  
7434 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { input.type = "checkbox";
7435  
7436 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Support: Android <=4.3 only
7437 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Default value for a checkbox should be "on"
7438 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { support.checkOn = input.value !== "";
7439  
7440 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Support: IE <=11 only
7441 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Must access selectedIndex to make default options select
7442 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { support.optSelected = opt.selected;
7443  
7444 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Support: IE <=11 only
7445 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // An input loses its value after becoming a radio
7446 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { input = document.createElement( "input" );
7447 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { input.value = "t";
7448 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { input.type = "radio";
7449 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { support.radioValue = input.value === "t";
7450 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {} )();
7451  
7452  
7453 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {var boolHook,
7454 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { attrHandle = jQuery.expr.attrHandle;
7455  
7456 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.fn.extend( {
7457 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { attr: function( name, value ) {
7458 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return access( this, jQuery.attr, name, value, arguments.length > 1 );
7459 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
7460  
7461 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { removeAttr: function( name ) {
7462 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return this.each( function() {
7463 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.removeAttr( this, name );
7464 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } );
7465 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7466 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {} );
7467  
7468 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.extend( {
7469 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { attr: function( elem, name, value ) {
7470 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { var ret, hooks,
7471 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { nType = elem.nodeType;
7472  
7473 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Don't get/set attributes on text, comment and attribute nodes
7474 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( nType === 3 || nType === 8 || nType === 2 ) {
7475 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return;
7476 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7477  
7478 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Fallback to prop when attributes are not supported
7479 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( typeof elem.getAttribute === "undefined" ) {
7480 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return jQuery.prop( elem, name, value );
7481 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7482  
7483 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Attribute hooks are determined by the lowercase version
7484 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Grab necessary hook if one is defined
7485 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {
7486 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { hooks = jQuery.attrHooks[ name.toLowerCase() ] ||
7487 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { ( jQuery.expr.match.bool.test( name ) ? boolHook : undefined );
7488 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7489  
7490 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( value !== undefined ) {
7491 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( value === null ) {
7492 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.removeAttr( elem, name );
7493 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return;
7494 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7495  
7496 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( hooks && "set" in hooks &&
7497 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { ( ret = hooks.set( elem, value, name ) ) !== undefined ) {
7498 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return ret;
7499 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7500  
7501 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { elem.setAttribute( name, value + "" );
7502 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return value;
7503 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7504  
7505 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) {
7506 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return ret;
7507 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7508  
7509 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { ret = jQuery.find.attr( elem, name );
7510  
7511 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Non-existent attributes return null, we normalize to undefined
7512 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return ret == null ? undefined : ret;
7513 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
7514  
7515 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { attrHooks: {
7516 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { type: {
7517 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { set: function( elem, value ) {
7518 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( !support.radioValue && value === "radio" &&
7519 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.nodeName( elem, "input" ) ) {
7520 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { var val = elem.value;
7521 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { elem.setAttribute( "type", value );
7522 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( val ) {
7523 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { elem.value = val;
7524 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7525 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return value;
7526 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7527 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7528 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7529 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
7530  
7531 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { removeAttr: function( elem, value ) {
7532 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { var name,
7533 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { i = 0,
7534  
7535 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Attribute names can contain non-HTML whitespace characters
7536 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // https://html.spec.whatwg.org/multipage/syntax.html#attributes-2
7537 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { attrNames = value && value.match( rnothtmlwhite );
7538  
7539 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( attrNames && elem.nodeType === 1 ) {
7540 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { while ( ( name = attrNames[ i++ ] ) ) {
7541 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { elem.removeAttribute( name );
7542 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7543 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7544 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7545 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {} );
7546  
7547 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {// Hooks for boolean attributes
7548 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {boolHook = {
7549 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { set: function( elem, value, name ) {
7550 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( value === false ) {
7551  
7552 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Remove boolean attributes when set to false
7553 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.removeAttr( elem, name );
7554 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else {
7555 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { elem.setAttribute( name, name );
7556 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7557 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return name;
7558 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7559 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {};
7560  
7561 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.each( jQuery.expr.match.bool.source.match( /\w+/g ), function( i, name ) {
7562 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { var getter = attrHandle[ name ] || jQuery.find.attr;
7563  
7564 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { attrHandle[ name ] = function( elem, name, isXML ) {
7565 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { var ret, handle,
7566 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { lowercaseName = name.toLowerCase();
7567  
7568 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( !isXML ) {
7569  
7570 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Avoid an infinite loop by temporarily removing this function from the getter
7571 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { handle = attrHandle[ lowercaseName ];
7572 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { attrHandle[ lowercaseName ] = ret;
7573 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { ret = getter( elem, name, isXML ) != null ?
7574 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { lowercaseName :
7575 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { null;
7576 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { attrHandle[ lowercaseName ] = handle;
7577 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7578 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return ret;
7579 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { };
7580 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {} );
7581  
7582  
7583  
7584  
7585 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {var rfocusable = /^(?:input|select|textarea|button)$/i,
7586 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { rclickable = /^(?:a|area)$/i;
7587  
7588 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.fn.extend( {
7589 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { prop: function( name, value ) {
7590 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return access( this, jQuery.prop, name, value, arguments.length > 1 );
7591 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
7592  
7593 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { removeProp: function( name ) {
7594 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return this.each( function() {
7595 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { delete this[ jQuery.propFix[ name ] || name ];
7596 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } );
7597 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7598 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {} );
7599  
7600 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.extend( {
7601 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { prop: function( elem, name, value ) {
7602 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { var ret, hooks,
7603 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { nType = elem.nodeType;
7604  
7605 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Don't get/set properties on text, comment and attribute nodes
7606 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( nType === 3 || nType === 8 || nType === 2 ) {
7607 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return;
7608 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7609  
7610 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {
7611  
7612 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Fix name and attach hooks
7613 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { name = jQuery.propFix[ name ] || name;
7614 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { hooks = jQuery.propHooks[ name ];
7615 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7616  
7617 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( value !== undefined ) {
7618 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( hooks && "set" in hooks &&
7619 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { ( ret = hooks.set( elem, value, name ) ) !== undefined ) {
7620 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return ret;
7621 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7622  
7623 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return ( elem[ name ] = value );
7624 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7625  
7626 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) {
7627 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return ret;
7628 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7629  
7630 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return elem[ name ];
7631 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
7632  
7633 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { propHooks: {
7634 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { tabIndex: {
7635 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { get: function( elem ) {
7636  
7637 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Support: IE <=9 - 11 only
7638 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // elem.tabIndex doesn't always return the
7639 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // correct value when it hasn't been explicitly set
7640 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // https://web.archive.org/web/20141116233347/http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/
7641 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Use proper attribute retrieval(#12072)
7642 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { var tabindex = jQuery.find.attr( elem, "tabindex" );
7643  
7644 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( tabindex ) {
7645 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return parseInt( tabindex, 10 );
7646 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7647  
7648 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if (
7649 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { rfocusable.test( elem.nodeName ) ||
7650 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { rclickable.test( elem.nodeName ) &&
7651 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { elem.href
7652 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { ) {
7653 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return 0;
7654 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7655  
7656 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return -1;
7657 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7658 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7659 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
7660  
7661 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { propFix: {
7662 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { "for": "htmlFor",
7663 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { "class": "className"
7664 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7665 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {} );
7666  
7667 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {// Support: IE <=11 only
7668 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {// Accessing the selectedIndex property
7669 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {// forces the browser to respect setting selected
7670 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {// on the option
7671 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {// The getter ensures a default option is selected
7672 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {// when in an optgroup
7673 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {// eslint rule "no-unused-expressions" is disabled for this code
7674 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {// since it considers such accessions noop
7675 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {if ( !support.optSelected ) {
7676 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.propHooks.selected = {
7677 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { get: function( elem ) {
7678  
7679 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { /* eslint no-unused-expressions: "off" */
7680  
7681 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { var parent = elem.parentNode;
7682 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( parent && parent.parentNode ) {
7683 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { parent.parentNode.selectedIndex;
7684 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7685 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return null;
7686 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
7687 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { set: function( elem ) {
7688  
7689 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { /* eslint no-unused-expressions: "off" */
7690  
7691 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { var parent = elem.parentNode;
7692 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( parent ) {
7693 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { parent.selectedIndex;
7694  
7695 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( parent.parentNode ) {
7696 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { parent.parentNode.selectedIndex;
7697 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7698 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7699 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7700 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { };
7701 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {}
7702  
7703 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.each( [
7704 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { "tabIndex",
7705 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { "readOnly",
7706 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { "maxLength",
7707 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { "cellSpacing",
7708 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { "cellPadding",
7709 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { "rowSpan",
7710 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { "colSpan",
7711 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { "useMap",
7712 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { "frameBorder",
7713 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { "contentEditable"
7714 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {], function() {
7715 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.propFix[ this.toLowerCase() ] = this;
7716 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {} );
7717  
7718  
7719  
7720  
7721 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Strip and collapse whitespace according to HTML spec
7722 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // https://html.spec.whatwg.org/multipage/infrastructure.html#strip-and-collapse-whitespace
7723 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { function stripAndCollapse( value ) {
7724 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { var tokens = value.match( rnothtmlwhite ) || [];
7725 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return tokens.join( " " );
7726 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7727  
7728  
7729 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {function getClass( elem ) {
7730 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return elem.getAttribute && elem.getAttribute( "class" ) || "";
7731 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {}
7732  
7733 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.fn.extend( {
7734 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { addClass: function( value ) {
7735 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { var classes, elem, cur, curValue, clazz, j, finalValue,
7736 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { i = 0;
7737  
7738 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( jQuery.isFunction( value ) ) {
7739 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return this.each( function( j ) {
7740 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery( this ).addClass( value.call( this, j, getClass( this ) ) );
7741 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } );
7742 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7743  
7744 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( typeof value === "string" && value ) {
7745 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { classes = value.match( rnothtmlwhite ) || [];
7746  
7747 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { while ( ( elem = this[ i++ ] ) ) {
7748 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { curValue = getClass( elem );
7749 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " );
7750  
7751 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( cur ) {
7752 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { j = 0;
7753 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { while ( ( clazz = classes[ j++ ] ) ) {
7754 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( cur.indexOf( " " + clazz + " " ) < 0 ) {
7755 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { cur += clazz + " ";
7756 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7757 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7758  
7759 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Only assign if different to avoid unneeded rendering.
7760 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { finalValue = stripAndCollapse( cur );
7761 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( curValue !== finalValue ) {
7762 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { elem.setAttribute( "class", finalValue );
7763 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7764 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7765 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7766 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7767  
7768 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return this;
7769 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
7770  
7771 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { removeClass: function( value ) {
7772 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { var classes, elem, cur, curValue, clazz, j, finalValue,
7773 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { i = 0;
7774  
7775 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( jQuery.isFunction( value ) ) {
7776 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return this.each( function( j ) {
7777 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery( this ).removeClass( value.call( this, j, getClass( this ) ) );
7778 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } );
7779 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7780  
7781 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( !arguments.length ) {
7782 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return this.attr( "class", "" );
7783 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7784  
7785 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( typeof value === "string" && value ) {
7786 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { classes = value.match( rnothtmlwhite ) || [];
7787  
7788 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { while ( ( elem = this[ i++ ] ) ) {
7789 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { curValue = getClass( elem );
7790  
7791 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // This expression is here for better compressibility (see addClass)
7792 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " );
7793  
7794 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( cur ) {
7795 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { j = 0;
7796 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { while ( ( clazz = classes[ j++ ] ) ) {
7797  
7798 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Remove *all* instances
7799 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { while ( cur.indexOf( " " + clazz + " " ) > -1 ) {
7800 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { cur = cur.replace( " " + clazz + " ", " " );
7801 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7802 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7803  
7804 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Only assign if different to avoid unneeded rendering.
7805 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { finalValue = stripAndCollapse( cur );
7806 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( curValue !== finalValue ) {
7807 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { elem.setAttribute( "class", finalValue );
7808 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7809 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7810 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7811 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7812  
7813 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return this;
7814 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
7815  
7816 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { toggleClass: function( value, stateVal ) {
7817 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { var type = typeof value;
7818  
7819 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( typeof stateVal === "boolean" && type === "string" ) {
7820 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return stateVal ? this.addClass( value ) : this.removeClass( value );
7821 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7822  
7823 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( jQuery.isFunction( value ) ) {
7824 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return this.each( function( i ) {
7825 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery( this ).toggleClass(
7826 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { value.call( this, i, getClass( this ), stateVal ),
7827 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { stateVal
7828 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { );
7829 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } );
7830 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7831  
7832 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return this.each( function() {
7833 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { var className, i, self, classNames;
7834  
7835 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( type === "string" ) {
7836  
7837 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Toggle individual class names
7838 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { i = 0;
7839 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { self = jQuery( this );
7840 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { classNames = value.match( rnothtmlwhite ) || [];
7841  
7842 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { while ( ( className = classNames[ i++ ] ) ) {
7843  
7844 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Check each className given, space separated list
7845 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( self.hasClass( className ) ) {
7846 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { self.removeClass( className );
7847 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else {
7848 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { self.addClass( className );
7849 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7850 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7851  
7852 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Toggle whole class name
7853 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else if ( value === undefined || type === "boolean" ) {
7854 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { className = getClass( this );
7855 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( className ) {
7856  
7857 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Store className if set
7858 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { dataPriv.set( this, "__className__", className );
7859 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7860  
7861 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // If the element has a class name or if we're passed `false`,
7862 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // then remove the whole classname (if there was one, the above saved it).
7863 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Otherwise bring back whatever was previously saved (if anything),
7864 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // falling back to the empty string if nothing was stored.
7865 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( this.setAttribute ) {
7866 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { this.setAttribute( "class",
7867 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { className || value === false ?
7868 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { "" :
7869 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { dataPriv.get( this, "__className__" ) || ""
7870 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { );
7871 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7872 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7873 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } );
7874 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
7875  
7876 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { hasClass: function( selector ) {
7877 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { var className, elem,
7878 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { i = 0;
7879  
7880 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { className = " " + selector + " ";
7881 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { while ( ( elem = this[ i++ ] ) ) {
7882 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( elem.nodeType === 1 &&
7883 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { ( " " + stripAndCollapse( getClass( elem ) ) + " " ).indexOf( className ) > -1 ) {
7884 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return true;
7885 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7886 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7887  
7888 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return false;
7889 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7890 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {} );
7891  
7892  
7893  
7894  
7895 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {var rreturn = /\r/g;
7896  
7897 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.fn.extend( {
7898 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { val: function( value ) {
7899 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { var hooks, ret, isFunction,
7900 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { elem = this[ 0 ];
7901  
7902 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( !arguments.length ) {
7903 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( elem ) {
7904 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { hooks = jQuery.valHooks[ elem.type ] ||
7905 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.valHooks[ elem.nodeName.toLowerCase() ];
7906  
7907 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( hooks &&
7908 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { "get" in hooks &&
7909 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { ( ret = hooks.get( elem, "value" ) ) !== undefined
7910 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { ) {
7911 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return ret;
7912 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7913  
7914 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { ret = elem.value;
7915  
7916 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Handle most common string cases
7917 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( typeof ret === "string" ) {
7918 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return ret.replace( rreturn, "" );
7919 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7920  
7921 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Handle cases where value is null/undef or number
7922 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return ret == null ? "" : ret;
7923 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7924  
7925 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return;
7926 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7927  
7928 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { isFunction = jQuery.isFunction( value );
7929  
7930 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return this.each( function( i ) {
7931 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { var val;
7932  
7933 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( this.nodeType !== 1 ) {
7934 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return;
7935 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7936  
7937 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( isFunction ) {
7938 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { val = value.call( this, i, jQuery( this ).val() );
7939 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else {
7940 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { val = value;
7941 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7942  
7943 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Treat null/undefined as ""; convert numbers to string
7944 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( val == null ) {
7945 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { val = "";
7946  
7947 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else if ( typeof val === "number" ) {
7948 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { val += "";
7949  
7950 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else if ( jQuery.isArray( val ) ) {
7951 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { val = jQuery.map( val, function( value ) {
7952 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return value == null ? "" : value + "";
7953 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } );
7954 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7955  
7956 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ];
7957  
7958 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // If set returns undefined, fall back to normal setting
7959 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( !hooks || !( "set" in hooks ) || hooks.set( this, val, "value" ) === undefined ) {
7960 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { this.value = val;
7961 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7962 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } );
7963 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7964 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {} );
7965  
7966 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.extend( {
7967 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { valHooks: {
7968 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { option: {
7969 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { get: function( elem ) {
7970  
7971 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { var val = jQuery.find.attr( elem, "value" );
7972 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return val != null ?
7973 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { val :
7974  
7975 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Support: IE <=10 - 11 only
7976 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // option.text throws exceptions (#14686, #14858)
7977 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Strip and collapse whitespace
7978 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // https://html.spec.whatwg.org/#strip-and-collapse-whitespace
7979 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { stripAndCollapse( jQuery.text( elem ) );
7980 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7981 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
7982 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { select: {
7983 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { get: function( elem ) {
7984 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { var value, option, i,
7985 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { options = elem.options,
7986 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { index = elem.selectedIndex,
7987 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { one = elem.type === "select-one",
7988 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { values = one ? null : [],
7989 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { max = one ? index + 1 : options.length;
7990  
7991 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( index < 0 ) {
7992 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { i = max;
7993  
7994 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else {
7995 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { i = one ? index : 0;
7996 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7997  
7998 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Loop through all the selected options
7999 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { for ( ; i < max; i++ ) {
8000 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { option = options[ i ];
8001  
8002 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Support: IE <=9 only
8003 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // IE8-9 doesn't update selected after form reset (#2551)
8004 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( ( option.selected || i === index ) &&
8005  
8006 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Don't return options that are disabled or in a disabled optgroup
8007 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { !option.disabled &&
8008 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { ( !option.parentNode.disabled ||
8009 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { !jQuery.nodeName( option.parentNode, "optgroup" ) ) ) {
8010  
8011 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Get the specific value for the option
8012 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { value = jQuery( option ).val();
8013  
8014 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // We don't need an array for one selects
8015 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( one ) {
8016 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return value;
8017 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8018  
8019 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Multi-Selects return an array
8020 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { values.push( value );
8021 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8022 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8023  
8024 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return values;
8025 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
8026  
8027 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { set: function( elem, value ) {
8028 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { var optionSet, option,
8029 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { options = elem.options,
8030 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { values = jQuery.makeArray( value ),
8031 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { i = options.length;
8032  
8033 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { while ( i-- ) {
8034 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { option = options[ i ];
8035  
8036 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { /* eslint-disable no-cond-assign */
8037  
8038 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( option.selected =
8039 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.inArray( jQuery.valHooks.option.get( option ), values ) > -1
8040 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { ) {
8041 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { optionSet = true;
8042 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8043  
8044 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { /* eslint-enable no-cond-assign */
8045 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8046  
8047 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Force browsers to behave consistently when non-matching value is set
8048 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( !optionSet ) {
8049 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { elem.selectedIndex = -1;
8050 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8051 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return values;
8052 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8053 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8054 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8055 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {} );
8056  
8057 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {// Radios and checkboxes getter/setter
8058 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.each( [ "radio", "checkbox" ], function() {
8059 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.valHooks[ this ] = {
8060 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { set: function( elem, value ) {
8061 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( jQuery.isArray( value ) ) {
8062 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return ( elem.checked = jQuery.inArray( jQuery( elem ).val(), value ) > -1 );
8063 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8064 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8065 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { };
8066 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( !support.checkOn ) {
8067 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.valHooks[ this ].get = function( elem ) {
8068 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return elem.getAttribute( "value" ) === null ? "on" : elem.value;
8069 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { };
8070 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8071 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {} );
8072  
8073  
8074  
8075  
8076 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {// Return jQuery for attributes-only inclusion
8077  
8078  
8079 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {var rfocusMorph = /^(?:focusinfocus|focusoutblur)$/;
8080  
8081 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.extend( jQuery.event, {
8082  
8083 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { trigger: function( event, data, elem, onlyHandlers ) {
8084  
8085 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { var i, cur, tmp, bubbleType, ontype, handle, special,
8086 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { eventPath = [ elem || document ],
8087 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { type = hasOwn.call( event, "type" ) ? event.type : event,
8088 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { namespaces = hasOwn.call( event, "namespace" ) ? event.namespace.split( "." ) : [];
8089  
8090 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { cur = tmp = elem = elem || document;
8091  
8092 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Don't do events on text and comment nodes
8093 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( elem.nodeType === 3 || elem.nodeType === 8 ) {
8094 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return;
8095 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8096  
8097 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // focus/blur morphs to focusin/out; ensure we're not firing them right now
8098 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( rfocusMorph.test( type + jQuery.event.triggered ) ) {
8099 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return;
8100 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8101  
8102 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( type.indexOf( "." ) > -1 ) {
8103  
8104 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Namespaced trigger; create a regexp to match event type in handle()
8105 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { namespaces = type.split( "." );
8106 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { type = namespaces.shift();
8107 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { namespaces.sort();
8108 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8109 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { ontype = type.indexOf( ":" ) < 0 && "on" + type;
8110  
8111 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Caller can pass in a jQuery.Event object, Object, or just an event type string
8112 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { event = event[ jQuery.expando ] ?
8113 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { event :
8114 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { new jQuery.Event( type, typeof event === "object" && event );
8115  
8116 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true)
8117 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { event.isTrigger = onlyHandlers ? 2 : 3;
8118 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { event.namespace = namespaces.join( "." );
8119 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { event.rnamespace = event.namespace ?
8120 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ) :
8121 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { null;
8122  
8123 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Clean up the event in case it is being reused
8124 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { event.result = undefined;
8125 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( !event.target ) {
8126 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { event.target = elem;
8127 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8128  
8129 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Clone any incoming data and prepend the event, creating the handler arg list
8130 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { data = data == null ?
8131 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { [ event ] :
8132 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.makeArray( data, [ event ] );
8133  
8134 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Allow special events to draw outside the lines
8135 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { special = jQuery.event.special[ type ] || {};
8136 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) {
8137 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return;
8138 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8139  
8140 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Determine event propagation path in advance, per W3C events spec (#9951)
8141 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Bubble up to document, then to window; watch for a global ownerDocument var (#9724)
8142 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( !onlyHandlers && !special.noBubble && !jQuery.isWindow( elem ) ) {
8143  
8144 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { bubbleType = special.delegateType || type;
8145 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( !rfocusMorph.test( bubbleType + type ) ) {
8146 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { cur = cur.parentNode;
8147 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8148 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { for ( ; cur; cur = cur.parentNode ) {
8149 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { eventPath.push( cur );
8150 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { tmp = cur;
8151 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8152  
8153 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Only add window if we got to document (e.g., not plain obj or detached DOM)
8154 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( tmp === ( elem.ownerDocument || document ) ) {
8155 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { eventPath.push( tmp.defaultView || tmp.parentWindow || window );
8156 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8157 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8158  
8159 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Fire handlers on the event path
8160 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { i = 0;
8161 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { while ( ( cur = eventPath[ i++ ] ) && !event.isPropagationStopped() ) {
8162  
8163 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { event.type = i > 1 ?
8164 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { bubbleType :
8165 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { special.bindType || type;
8166  
8167 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // jQuery handler
8168 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { handle = ( dataPriv.get( cur, "events" ) || {} )[ event.type ] &&
8169 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { dataPriv.get( cur, "handle" );
8170 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( handle ) {
8171 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { handle.apply( cur, data );
8172 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8173  
8174 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Native handler
8175 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { handle = ontype && cur[ ontype ];
8176 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( handle && handle.apply && acceptData( cur ) ) {
8177 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { event.result = handle.apply( cur, data );
8178 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( event.result === false ) {
8179 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { event.preventDefault();
8180 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8181 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8182 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8183 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { event.type = type;
8184  
8185 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // If nobody prevented the default action, do it now
8186 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( !onlyHandlers && !event.isDefaultPrevented() ) {
8187  
8188 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( ( !special._default ||
8189 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { special._default.apply( eventPath.pop(), data ) === false ) &&
8190 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { acceptData( elem ) ) {
8191  
8192 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Call a native DOM method on the target with the same name as the event.
8193 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Don't do default actions on window, that's where global variables be (#6170)
8194 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( ontype && jQuery.isFunction( elem[ type ] ) && !jQuery.isWindow( elem ) ) {
8195  
8196 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Don't re-trigger an onFOO event when we call its FOO() method
8197 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { tmp = elem[ ontype ];
8198  
8199 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( tmp ) {
8200 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { elem[ ontype ] = null;
8201 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8202  
8203 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Prevent re-triggering of the same event, since we already bubbled it above
8204 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.event.triggered = type;
8205 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { elem[ type ]();
8206 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.event.triggered = undefined;
8207  
8208 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( tmp ) {
8209 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { elem[ ontype ] = tmp;
8210 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8211 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8212 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8213 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8214  
8215 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return event.result;
8216 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
8217  
8218 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Piggyback on a donor event to simulate a different one
8219 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Used only for `focus(in | out)` events
8220 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { simulate: function( type, elem, event ) {
8221 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { var e = jQuery.extend(
8222 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { new jQuery.Event(),
8223 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { event,
8224 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { {
8225 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { type: type,
8226 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { isSimulated: true
8227 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8228 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { );
8229  
8230 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.event.trigger( e, null, elem );
8231 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8232  
8233 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {} );
8234  
8235 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.fn.extend( {
8236  
8237 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { trigger: function( type, data ) {
8238 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return this.each( function() {
8239 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.event.trigger( type, data, this );
8240 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } );
8241 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
8242 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { triggerHandler: function( type, data ) {
8243 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { var elem = this[ 0 ];
8244 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( elem ) {
8245 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return jQuery.event.trigger( type, data, elem, true );
8246 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8247 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8248 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {} );
8249  
8250  
8251 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.each( ( "blur focus focusin focusout resize scroll click dblclick " +
8252 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { "mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave " +
8253 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { "change select submit keydown keypress keyup contextmenu" ).split( " " ),
8254 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { function( i, name ) {
8255  
8256 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Handle event binding
8257 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.fn[ name ] = function( data, fn ) {
8258 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return arguments.length > 0 ?
8259 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { this.on( name, null, data, fn ) :
8260 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { this.trigger( name );
8261 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { };
8262 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {} );
8263  
8264 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.fn.extend( {
8265 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { hover: function( fnOver, fnOut ) {
8266 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return this.mouseenter( fnOver ).mouseleave( fnOut || fnOver );
8267 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8268 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {} );
8269  
8270  
8271  
8272  
8273 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {support.focusin = "onfocusin" in window;
8274  
8275  
8276 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {// Support: Firefox <=44
8277 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {// Firefox doesn't have focus(in | out) events
8278 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {// Related ticket - https://bugzilla.mozilla.org/show_bug.cgi?id=687787
8279 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {//
8280 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {// Support: Chrome <=48 - 49, Safari <=9.0 - 9.1
8281 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {// focus(in | out) events fire after focus & blur events,
8282 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {// which is spec violation - http://www.w3.org/TR/DOM-Level-3-Events/#events-focusevent-event-order
8283 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {// Related ticket - https://bugs.chromium.org/p/chromium/issues/detail?id=449857
8284 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {if ( !support.focusin ) {
8285 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.each( { focus: "focusin", blur: "focusout" }, function( orig, fix ) {
8286  
8287 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Attach a single capturing handler on the document while someone wants focusin/focusout
8288 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { var handler = function( event ) {
8289 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ) );
8290 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { };
8291  
8292 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.event.special[ fix ] = {
8293 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { setup: function() {
8294 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { var doc = this.ownerDocument || this,
8295 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { attaches = dataPriv.access( doc, fix );
8296  
8297 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( !attaches ) {
8298 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { doc.addEventListener( orig, handler, true );
8299 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8300 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { dataPriv.access( doc, fix, ( attaches || 0 ) + 1 );
8301 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
8302 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { teardown: function() {
8303 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { var doc = this.ownerDocument || this,
8304 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { attaches = dataPriv.access( doc, fix ) - 1;
8305  
8306 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( !attaches ) {
8307 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { doc.removeEventListener( orig, handler, true );
8308 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { dataPriv.remove( doc, fix );
8309  
8310 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else {
8311 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { dataPriv.access( doc, fix, attaches );
8312 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8313 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8314 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { };
8315 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } );
8316 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {}
8317 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {var location = window.location;
8318  
8319 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {var nonce = jQuery.now();
8320  
8321 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {var rquery = ( /\?/ );
8322  
8323  
8324  
8325 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {// Cross-browser xml parsing
8326 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.parseXML = function( data ) {
8327 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { var xml;
8328 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( !data || typeof data !== "string" ) {
8329 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return null;
8330 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8331  
8332 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Support: IE 9 - 11 only
8333 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // IE throws on parseFromString with invalid input.
8334 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { try {
8335 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { xml = ( new window.DOMParser() ).parseFromString( data, "text/xml" );
8336 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } catch ( e ) {
8337 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { xml = undefined;
8338 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8339  
8340 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( !xml || xml.getElementsByTagName( "parsererror" ).length ) {
8341 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.error( "Invalid XML: " + data );
8342 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8343 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return xml;
8344 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {};
8345  
8346  
8347 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {var
8348 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { rbracket = /\[\]$/,
8349 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { rCRLF = /\r?\n/g,
8350 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { rsubmitterTypes = /^(?:submit|button|image|reset|file)$/i,
8351 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { rsubmittable = /^(?:input|select|textarea|keygen)/i;
8352  
8353 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {function buildParams( prefix, obj, traditional, add ) {
8354 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { var name;
8355  
8356 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( jQuery.isArray( obj ) ) {
8357  
8358 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Serialize array item.
8359 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.each( obj, function( i, v ) {
8360 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( traditional || rbracket.test( prefix ) ) {
8361  
8362 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Treat each array item as a scalar.
8363 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { add( prefix, v );
8364  
8365 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else {
8366  
8367 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Item is non-scalar (array or object), encode its numeric index.
8368 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { buildParams(
8369 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { prefix + "[" + ( typeof v === "object" && v != null ? i : "" ) + "]",
8370 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { v,
8371 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { traditional,
8372 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { add
8373 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { );
8374 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8375 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } );
8376  
8377 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else if ( !traditional && jQuery.type( obj ) === "object" ) {
8378  
8379 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Serialize object item.
8380 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { for ( name in obj ) {
8381 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { buildParams( prefix + "[" + name + "]", obj[ name ], traditional, add );
8382 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8383  
8384 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else {
8385  
8386 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Serialize scalar item.
8387 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { add( prefix, obj );
8388 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8389 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {}
8390  
8391 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {// Serialize an array of form elements or a set of
8392 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {// key/values into a query string
8393 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.param = function( a, traditional ) {
8394 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { var prefix,
8395 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { s = [],
8396 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { add = function( key, valueOrFunction ) {
8397  
8398 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // If value is a function, invoke it and use its return value
8399 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { var value = jQuery.isFunction( valueOrFunction ) ?
8400 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { valueOrFunction() :
8401 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { valueOrFunction;
8402  
8403 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { s[ s.length ] = encodeURIComponent( key ) + "=" +
8404 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { encodeURIComponent( value == null ? "" : value );
8405 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { };
8406  
8407 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // If an array was passed in, assume that it is an array of form elements.
8408 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( jQuery.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) {
8409  
8410 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Serialize the form elements
8411 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.each( a, function() {
8412 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { add( this.name, this.value );
8413 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } );
8414  
8415 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else {
8416  
8417 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // If traditional, encode the "old" way (the way 1.3.2 or older
8418 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // did it), otherwise encode params recursively.
8419 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { for ( prefix in a ) {
8420 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { buildParams( prefix, a[ prefix ], traditional, add );
8421 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8422 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8423  
8424 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Return the resulting serialization
8425 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return s.join( "&" );
8426 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {};
8427  
8428 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.fn.extend( {
8429 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { serialize: function() {
8430 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return jQuery.param( this.serializeArray() );
8431 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
8432 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { serializeArray: function() {
8433 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return this.map( function() {
8434  
8435 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Can add propHook for "elements" to filter or add form elements
8436 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { var elements = jQuery.prop( this, "elements" );
8437 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return elements ? jQuery.makeArray( elements ) : this;
8438 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } )
8439 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { .filter( function() {
8440 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { var type = this.type;
8441  
8442 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Use .is( ":disabled" ) so that fieldset[disabled] works
8443 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return this.name && !jQuery( this ).is( ":disabled" ) &&
8444 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { rsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) &&
8445 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { ( this.checked || !rcheckableType.test( type ) );
8446 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } )
8447 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { .map( function( i, elem ) {
8448 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { var val = jQuery( this ).val();
8449  
8450 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( val == null ) {
8451 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return null;
8452 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8453  
8454 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( jQuery.isArray( val ) ) {
8455 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return jQuery.map( val, function( val ) {
8456 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) };
8457 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } );
8458 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8459  
8460 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) };
8461 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } ).get();
8462 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8463 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {} );
8464  
8465  
8466 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {var
8467 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { r20 = /%20/g,
8468 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { rhash = /#.*$/,
8469 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { rantiCache = /([?&])_=[^&]*/,
8470 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { rheaders = /^(.*?):[ \t]*([^\r\n]*)$/mg,
8471  
8472 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // #7653, #8125, #8152: local protocol detection
8473 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { rlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/,
8474 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { rnoContent = /^(?:GET|HEAD)$/,
8475 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { rprotocol = /^\/\//,
8476  
8477 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { /* Prefilters
8478 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example)
8479 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { * 2) These are called:
8480 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { * - BEFORE asking for a transport
8481 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { * - AFTER param serialization (s.data is a string if s.processData is true)
8482 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { * 3) key is the dataType
8483 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { * 4) the catchall symbol "*" can be used
8484 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { * 5) execution will start with transport dataType and THEN continue down to "*" if needed
8485 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { */
8486 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { prefilters = {},
8487  
8488 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { /* Transports bindings
8489 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { * 1) key is the dataType
8490 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { * 2) the catchall symbol "*" can be used
8491 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { * 3) selection will start with transport dataType and THEN go to "*" if needed
8492 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { */
8493 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { transports = {},
8494  
8495 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Avoid comment-prolog char sequence (#10098); must appease lint and evade compression
8496 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { allTypes = "*/".concat( "*" ),
8497  
8498 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Anchor tag for parsing the document origin
8499 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { originAnchor = document.createElement( "a" );
8500 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { originAnchor.href = location.href;
8501  
8502 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {// Base "constructor" for jQuery.ajaxPrefilter and jQuery.ajaxTransport
8503 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {function addToPrefiltersOrTransports( structure ) {
8504  
8505 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // dataTypeExpression is optional and defaults to "*"
8506 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return function( dataTypeExpression, func ) {
8507  
8508 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( typeof dataTypeExpression !== "string" ) {
8509 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { func = dataTypeExpression;
8510 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { dataTypeExpression = "*";
8511 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8512  
8513 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { var dataType,
8514 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { i = 0,
8515 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { dataTypes = dataTypeExpression.toLowerCase().match( rnothtmlwhite ) || [];
8516  
8517 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( jQuery.isFunction( func ) ) {
8518  
8519 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // For each dataType in the dataTypeExpression
8520 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { while ( ( dataType = dataTypes[ i++ ] ) ) {
8521  
8522 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Prepend if requested
8523 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( dataType[ 0 ] === "+" ) {
8524 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { dataType = dataType.slice( 1 ) || "*";
8525 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { ( structure[ dataType ] = structure[ dataType ] || [] ).unshift( func );
8526  
8527 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Otherwise append
8528 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else {
8529 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { ( structure[ dataType ] = structure[ dataType ] || [] ).push( func );
8530 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8531 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8532 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8533 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { };
8534 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {}
8535  
8536 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {// Base inspection function for prefilters and transports
8537 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {function inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) {
8538  
8539 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { var inspected = {},
8540 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { seekingTransport = ( structure === transports );
8541  
8542 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { function inspect( dataType ) {
8543 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { var selected;
8544 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { inspected[ dataType ] = true;
8545 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) {
8546 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { var dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR );
8547 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( typeof dataTypeOrTransport === "string" &&
8548 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { !seekingTransport && !inspected[ dataTypeOrTransport ] ) {
8549  
8550 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { options.dataTypes.unshift( dataTypeOrTransport );
8551 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { inspect( dataTypeOrTransport );
8552 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return false;
8553 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else if ( seekingTransport ) {
8554 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return !( selected = dataTypeOrTransport );
8555 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8556 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } );
8557 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return selected;
8558 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8559  
8560 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return inspect( options.dataTypes[ 0 ] ) || !inspected[ "*" ] && inspect( "*" );
8561 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {}
8562  
8563 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {// A special extend for ajax options
8564 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {// that takes "flat" options (not to be deep extended)
8565 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {// Fixes #9887
8566 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {function ajaxExtend( target, src ) {
8567 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { var key, deep,
8568 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { flatOptions = jQuery.ajaxSettings.flatOptions || {};
8569  
8570 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { for ( key in src ) {
8571 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( src[ key ] !== undefined ) {
8572 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { ( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ];
8573 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8574 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8575 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( deep ) {
8576 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.extend( true, target, deep );
8577 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8578  
8579 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return target;
8580 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {}
8581  
8582 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {/* Handles responses to an ajax request:
8583 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { * - finds the right dataType (mediates between content-type and expected dataType)
8584 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { * - returns the corresponding response
8585 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { */
8586 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {function ajaxHandleResponses( s, jqXHR, responses ) {
8587  
8588 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { var ct, type, finalDataType, firstDataType,
8589 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { contents = s.contents,
8590 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { dataTypes = s.dataTypes;
8591  
8592 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Remove auto dataType and get content-type in the process
8593 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { while ( dataTypes[ 0 ] === "*" ) {
8594 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { dataTypes.shift();
8595 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( ct === undefined ) {
8596 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { ct = s.mimeType || jqXHR.getResponseHeader( "Content-Type" );
8597 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8598 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8599  
8600 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Check if we're dealing with a known content-type
8601 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( ct ) {
8602 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { for ( type in contents ) {
8603 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( contents[ type ] && contents[ type ].test( ct ) ) {
8604 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { dataTypes.unshift( type );
8605 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { break;
8606 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8607 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8608 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8609  
8610 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Check to see if we have a response for the expected dataType
8611 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( dataTypes[ 0 ] in responses ) {
8612 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { finalDataType = dataTypes[ 0 ];
8613 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else {
8614  
8615 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Try convertible dataTypes
8616 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { for ( type in responses ) {
8617 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( !dataTypes[ 0 ] || s.converters[ type + " " + dataTypes[ 0 ] ] ) {
8618 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { finalDataType = type;
8619 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { break;
8620 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8621 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( !firstDataType ) {
8622 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { firstDataType = type;
8623 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8624 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8625  
8626 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Or just use first one
8627 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { finalDataType = finalDataType || firstDataType;
8628 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8629  
8630 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // If we found a dataType
8631 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // We add the dataType to the list if needed
8632 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // and return the corresponding response
8633 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( finalDataType ) {
8634 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( finalDataType !== dataTypes[ 0 ] ) {
8635 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { dataTypes.unshift( finalDataType );
8636 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8637 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return responses[ finalDataType ];
8638 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8639 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {}
8640  
8641 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {/* Chain conversions given the request and the original response
8642 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { * Also sets the responseXXX fields on the jqXHR instance
8643 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { */
8644 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {function ajaxConvert( s, response, jqXHR, isSuccess ) {
8645 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { var conv2, current, conv, tmp, prev,
8646 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { converters = {},
8647  
8648 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Work with a copy of dataTypes in case we need to modify it for conversion
8649 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { dataTypes = s.dataTypes.slice();
8650  
8651 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Create converters map with lowercased keys
8652 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( dataTypes[ 1 ] ) {
8653 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { for ( conv in s.converters ) {
8654 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { converters[ conv.toLowerCase() ] = s.converters[ conv ];
8655 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8656 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8657  
8658 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { current = dataTypes.shift();
8659  
8660 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Convert to each sequential dataType
8661 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { while ( current ) {
8662  
8663 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( s.responseFields[ current ] ) {
8664 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jqXHR[ s.responseFields[ current ] ] = response;
8665 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8666  
8667 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Apply the dataFilter if provided
8668 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( !prev && isSuccess && s.dataFilter ) {
8669 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { response = s.dataFilter( response, s.dataType );
8670 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8671  
8672 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { prev = current;
8673 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { current = dataTypes.shift();
8674  
8675 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( current ) {
8676  
8677 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // There's only work to do if current dataType is non-auto
8678 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( current === "*" ) {
8679  
8680 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { current = prev;
8681  
8682 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Convert response if prev dataType is non-auto and differs from current
8683 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else if ( prev !== "*" && prev !== current ) {
8684  
8685 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Seek a direct converter
8686 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { conv = converters[ prev + " " + current ] || converters[ "* " + current ];
8687  
8688 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // If none found, seek a pair
8689 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( !conv ) {
8690 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { for ( conv2 in converters ) {
8691  
8692 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // If conv2 outputs current
8693 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { tmp = conv2.split( " " );
8694 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( tmp[ 1 ] === current ) {
8695  
8696 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // If prev can be converted to accepted input
8697 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { conv = converters[ prev + " " + tmp[ 0 ] ] ||
8698 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { converters[ "* " + tmp[ 0 ] ];
8699 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( conv ) {
8700  
8701 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Condense equivalence converters
8702 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( conv === true ) {
8703 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { conv = converters[ conv2 ];
8704  
8705 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Otherwise, insert the intermediate dataType
8706 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else if ( converters[ conv2 ] !== true ) {
8707 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { current = tmp[ 0 ];
8708 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { dataTypes.unshift( tmp[ 1 ] );
8709 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8710 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { break;
8711 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8712 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8713 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8714 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8715  
8716 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Apply converter (if not an equivalence)
8717 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( conv !== true ) {
8718  
8719 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Unless errors are allowed to bubble, catch and return them
8720 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( conv && s.throws ) {
8721 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { response = conv( response );
8722 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else {
8723 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { try {
8724 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { response = conv( response );
8725 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } catch ( e ) {
8726 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return {
8727 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { state: "parsererror",
8728 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { error: conv ? e : "No conversion from " + prev + " to " + current
8729 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { };
8730 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8731 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8732 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8733 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8734 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8735 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8736  
8737 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return { state: "success", data: response };
8738 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {}
8739  
8740 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.extend( {
8741  
8742 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Counter for holding the number of active queries
8743 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { active: 0,
8744  
8745 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Last-Modified header cache for next request
8746 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { lastModified: {},
8747 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { etag: {},
8748  
8749 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { ajaxSettings: {
8750 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { url: location.href,
8751 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { type: "GET",
8752 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { isLocal: rlocalProtocol.test( location.protocol ),
8753 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { global: true,
8754 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { processData: true,
8755 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { async: true,
8756 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { contentType: "application/x-www-form-urlencoded; charset=UTF-8",
8757  
8758 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { /*
8759 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { timeout: 0,
8760 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { data: null,
8761 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { dataType: null,
8762 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { username: null,
8763 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { password: null,
8764 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { cache: null,
8765 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { throws: false,
8766 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { traditional: false,
8767 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { headers: {},
8768 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { */
8769  
8770 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { accepts: {
8771 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { "*": allTypes,
8772 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { text: "text/plain",
8773 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { html: "text/html",
8774 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { xml: "application/xml, text/xml",
8775 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { json: "application/json, text/javascript"
8776 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
8777  
8778 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { contents: {
8779 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { xml: /\bxml\b/,
8780 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { html: /\bhtml/,
8781 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { json: /\bjson\b/
8782 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
8783  
8784 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { responseFields: {
8785 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { xml: "responseXML",
8786 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { text: "responseText",
8787 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { json: "responseJSON"
8788 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
8789  
8790 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Data converters
8791 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Keys separate source (or catchall "*") and destination types with a single space
8792 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { converters: {
8793  
8794 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Convert anything to text
8795 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { "* text": String,
8796  
8797 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Text to html (true = no transformation)
8798 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { "text html": true,
8799  
8800 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Evaluate text as a json expression
8801 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { "text json": JSON.parse,
8802  
8803 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Parse text as xml
8804 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { "text xml": jQuery.parseXML
8805 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
8806  
8807 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // For options that shouldn't be deep extended:
8808 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // you can add your own custom options here if
8809 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // and when you create one that shouldn't be
8810 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // deep extended (see ajaxExtend)
8811 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { flatOptions: {
8812 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { url: true,
8813 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { context: true
8814 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8815 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
8816  
8817 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Creates a full fledged settings object into target
8818 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // with both ajaxSettings and settings fields.
8819 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // If target is omitted, writes into ajaxSettings.
8820 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { ajaxSetup: function( target, settings ) {
8821 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return settings ?
8822  
8823 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Building a settings object
8824 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { ajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) :
8825  
8826 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Extending ajaxSettings
8827 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { ajaxExtend( jQuery.ajaxSettings, target );
8828 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
8829  
8830 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { ajaxPrefilter: addToPrefiltersOrTransports( prefilters ),
8831 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { ajaxTransport: addToPrefiltersOrTransports( transports ),
8832  
8833 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Main method
8834 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { ajax: function( url, options ) {
8835  
8836 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // If url is an object, simulate pre-1.5 signature
8837 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( typeof url === "object" ) {
8838 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { options = url;
8839 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { url = undefined;
8840 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8841  
8842 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Force options to be an object
8843 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { options = options || {};
8844  
8845 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { var transport,
8846  
8847 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // URL without anti-cache param
8848 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { cacheURL,
8849  
8850 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Response headers
8851 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { responseHeadersString,
8852 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { responseHeaders,
8853  
8854 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // timeout handle
8855 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { timeoutTimer,
8856  
8857 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Url cleanup var
8858 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { urlAnchor,
8859  
8860 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Request state (becomes false upon send and true upon completion)
8861 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { completed,
8862  
8863 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // To know if global events are to be dispatched
8864 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { fireGlobals,
8865  
8866 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Loop variable
8867 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { i,
8868  
8869 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // uncached part of the url
8870 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { uncached,
8871  
8872 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Create the final options object
8873 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { s = jQuery.ajaxSetup( {}, options ),
8874  
8875 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Callbacks context
8876 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { callbackContext = s.context || s,
8877  
8878 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Context for global events is callbackContext if it is a DOM node or jQuery collection
8879 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { globalEventContext = s.context &&
8880 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { ( callbackContext.nodeType || callbackContext.jquery ) ?
8881 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery( callbackContext ) :
8882 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.event,
8883  
8884 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Deferreds
8885 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { deferred = jQuery.Deferred(),
8886 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { completeDeferred = jQuery.Callbacks( "once memory" ),
8887  
8888 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Status-dependent callbacks
8889 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { statusCode = s.statusCode || {},
8890  
8891 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Headers (they are sent all at once)
8892 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { requestHeaders = {},
8893 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { requestHeadersNames = {},
8894  
8895 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Default abort message
8896 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { strAbort = "canceled",
8897  
8898 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Fake xhr
8899 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jqXHR = {
8900 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { readyState: 0,
8901  
8902 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Builds headers hashtable if needed
8903 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { getResponseHeader: function( key ) {
8904 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { var match;
8905 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( completed ) {
8906 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( !responseHeaders ) {
8907 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { responseHeaders = {};
8908 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { while ( ( match = rheaders.exec( responseHeadersString ) ) ) {
8909 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { responseHeaders[ match[ 1 ].toLowerCase() ] = match[ 2 ];
8910 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8911 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8912 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { match = responseHeaders[ key.toLowerCase() ];
8913 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8914 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return match == null ? null : match;
8915 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
8916  
8917 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Raw string
8918 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { getAllResponseHeaders: function() {
8919 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return completed ? responseHeadersString : null;
8920 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
8921  
8922 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Caches the header
8923 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { setRequestHeader: function( name, value ) {
8924 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( completed == null ) {
8925 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { name = requestHeadersNames[ name.toLowerCase() ] =
8926 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { requestHeadersNames[ name.toLowerCase() ] || name;
8927 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { requestHeaders[ name ] = value;
8928 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8929 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return this;
8930 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
8931  
8932 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Overrides response content-type header
8933 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { overrideMimeType: function( type ) {
8934 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( completed == null ) {
8935 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { s.mimeType = type;
8936 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8937 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return this;
8938 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
8939  
8940 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Status-dependent callbacks
8941 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { statusCode: function( map ) {
8942 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { var code;
8943 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( map ) {
8944 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( completed ) {
8945  
8946 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Execute the appropriate callbacks
8947 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jqXHR.always( map[ jqXHR.status ] );
8948 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else {
8949  
8950 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Lazy-add the new callbacks in a way that preserves old ones
8951 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { for ( code in map ) {
8952 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { statusCode[ code ] = [ statusCode[ code ], map[ code ] ];
8953 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8954 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8955 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8956 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return this;
8957 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
8958  
8959 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Cancel the request
8960 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { abort: function( statusText ) {
8961 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { var finalText = statusText || strAbort;
8962 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( transport ) {
8963 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { transport.abort( finalText );
8964 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8965 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { done( 0, finalText );
8966 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return this;
8967 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8968 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { };
8969  
8970 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Attach deferreds
8971 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { deferred.promise( jqXHR );
8972  
8973 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Add protocol if not provided (prefilters might expect it)
8974 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Handle falsy url in the settings object (#10093: consistency with old signature)
8975 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // We also use the url parameter if available
8976 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { s.url = ( ( url || s.url || location.href ) + "" )
8977 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { .replace( rprotocol, location.protocol + "//" );
8978  
8979 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Alias method option to type as per ticket #12004
8980 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { s.type = options.method || options.type || s.method || s.type;
8981  
8982 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Extract dataTypes list
8983 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { s.dataTypes = ( s.dataType || "*" ).toLowerCase().match( rnothtmlwhite ) || [ "" ];
8984  
8985 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // A cross-domain request is in order when the origin doesn't match the current origin.
8986 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( s.crossDomain == null ) {
8987 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { urlAnchor = document.createElement( "a" );
8988  
8989 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Support: IE <=8 - 11, Edge 12 - 13
8990 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // IE throws exception on accessing the href property if url is malformed,
8991 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // e.g. http://example.com:80x/
8992 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { try {
8993 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { urlAnchor.href = s.url;
8994  
8995 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Support: IE <=8 - 11 only
8996 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Anchor's host property isn't correctly set when s.url is relative
8997 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { urlAnchor.href = urlAnchor.href;
8998 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { s.crossDomain = originAnchor.protocol + "//" + originAnchor.host !==
8999 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { urlAnchor.protocol + "//" + urlAnchor.host;
9000 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } catch ( e ) {
9001  
9002 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // If there is an error parsing the URL, assume it is crossDomain,
9003 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // it can be rejected by the transport if it is invalid
9004 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { s.crossDomain = true;
9005 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9006 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9007  
9008 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Convert data if not already a string
9009 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( s.data && s.processData && typeof s.data !== "string" ) {
9010 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { s.data = jQuery.param( s.data, s.traditional );
9011 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9012  
9013 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Apply prefilters
9014 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { inspectPrefiltersOrTransports( prefilters, s, options, jqXHR );
9015  
9016 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // If request was aborted inside a prefilter, stop there
9017 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( completed ) {
9018 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return jqXHR;
9019 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9020  
9021 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // We can fire global events as of now if asked to
9022 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118)
9023 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { fireGlobals = jQuery.event && s.global;
9024  
9025 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Watch for a new set of requests
9026 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( fireGlobals && jQuery.active++ === 0 ) {
9027 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.event.trigger( "ajaxStart" );
9028 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9029  
9030 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Uppercase the type
9031 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { s.type = s.type.toUpperCase();
9032  
9033 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Determine if request has content
9034 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { s.hasContent = !rnoContent.test( s.type );
9035  
9036 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Save the URL in case we're toying with the If-Modified-Since
9037 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // and/or If-None-Match header later on
9038 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Remove hash to simplify url manipulation
9039 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { cacheURL = s.url.replace( rhash, "" );
9040  
9041 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // More options handling for requests with no content
9042 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( !s.hasContent ) {
9043  
9044 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Remember the hash so we can put it back
9045 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { uncached = s.url.slice( cacheURL.length );
9046  
9047 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // If data is available, append data to url
9048 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( s.data ) {
9049 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { cacheURL += ( rquery.test( cacheURL ) ? "&" : "?" ) + s.data;
9050  
9051 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // #9682: remove data so that it's not used in an eventual retry
9052 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { delete s.data;
9053 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9054  
9055 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Add or update anti-cache param if needed
9056 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( s.cache === false ) {
9057 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { cacheURL = cacheURL.replace( rantiCache, "$1" );
9058 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { uncached = ( rquery.test( cacheURL ) ? "&" : "?" ) + "_=" + ( nonce++ ) + uncached;
9059 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9060  
9061 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Put hash and anti-cache on the URL that will be requested (gh-1732)
9062 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { s.url = cacheURL + uncached;
9063  
9064 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Change '%20' to '+' if this is encoded form body content (gh-2658)
9065 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else if ( s.data && s.processData &&
9066 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { ( s.contentType || "" ).indexOf( "application/x-www-form-urlencoded" ) === 0 ) {
9067 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { s.data = s.data.replace( r20, "+" );
9068 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9069  
9070 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.
9071 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( s.ifModified ) {
9072 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( jQuery.lastModified[ cacheURL ] ) {
9073 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jqXHR.setRequestHeader( "If-Modified-Since", jQuery.lastModified[ cacheURL ] );
9074 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9075 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( jQuery.etag[ cacheURL ] ) {
9076 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jqXHR.setRequestHeader( "If-None-Match", jQuery.etag[ cacheURL ] );
9077 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9078 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9079  
9080 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Set the correct header, if data is being sent
9081 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( s.data && s.hasContent && s.contentType !== false || options.contentType ) {
9082 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jqXHR.setRequestHeader( "Content-Type", s.contentType );
9083 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9084  
9085 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Set the Accepts header for the server, depending on the dataType
9086 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jqXHR.setRequestHeader(
9087 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { "Accept",
9088 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[ 0 ] ] ?
9089 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { s.accepts[ s.dataTypes[ 0 ] ] +
9090 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { ( s.dataTypes[ 0 ] !== "*" ? ", " + allTypes + "; q=0.01" : "" ) :
9091 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { s.accepts[ "*" ]
9092 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { );
9093  
9094 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Check for headers option
9095 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { for ( i in s.headers ) {
9096 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jqXHR.setRequestHeader( i, s.headers[ i ] );
9097 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9098  
9099 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Allow custom headers/mimetypes and early abort
9100 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( s.beforeSend &&
9101 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { ( s.beforeSend.call( callbackContext, jqXHR, s ) === false || completed ) ) {
9102  
9103 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Abort if not done already and return
9104 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return jqXHR.abort();
9105 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9106  
9107 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Aborting is no longer a cancellation
9108 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { strAbort = "abort";
9109  
9110 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Install callbacks on deferreds
9111 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { completeDeferred.add( s.complete );
9112 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jqXHR.done( s.success );
9113 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jqXHR.fail( s.error );
9114  
9115 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Get transport
9116 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { transport = inspectPrefiltersOrTransports( transports, s, options, jqXHR );
9117  
9118 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // If no transport, we auto-abort
9119 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( !transport ) {
9120 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { done( -1, "No Transport" );
9121 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else {
9122 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jqXHR.readyState = 1;
9123  
9124 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Send global event
9125 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( fireGlobals ) {
9126 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { globalEventContext.trigger( "ajaxSend", [ jqXHR, s ] );
9127 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9128  
9129 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // If request was aborted inside ajaxSend, stop there
9130 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( completed ) {
9131 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return jqXHR;
9132 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9133  
9134 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Timeout
9135 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( s.async && s.timeout > 0 ) {
9136 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { timeoutTimer = window.setTimeout( function() {
9137 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jqXHR.abort( "timeout" );
9138 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }, s.timeout );
9139 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9140  
9141 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { try {
9142 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { completed = false;
9143 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { transport.send( requestHeaders, done );
9144 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } catch ( e ) {
9145  
9146 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Rethrow post-completion exceptions
9147 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( completed ) {
9148 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { throw e;
9149 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9150  
9151 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Propagate others as results
9152 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { done( -1, e );
9153 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9154 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9155  
9156 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Callback for when everything is done
9157 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { function done( status, nativeStatusText, responses, headers ) {
9158 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { var isSuccess, success, error, response, modified,
9159 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { statusText = nativeStatusText;
9160  
9161 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Ignore repeat invocations
9162 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( completed ) {
9163 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return;
9164 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9165  
9166 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { completed = true;
9167  
9168 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Clear timeout if it exists
9169 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( timeoutTimer ) {
9170 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { window.clearTimeout( timeoutTimer );
9171 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9172  
9173 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Dereference transport for early garbage collection
9174 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // (no matter how long the jqXHR object will be used)
9175 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { transport = undefined;
9176  
9177 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Cache response headers
9178 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { responseHeadersString = headers || "";
9179  
9180 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Set readyState
9181 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jqXHR.readyState = status > 0 ? 4 : 0;
9182  
9183 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Determine if successful
9184 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { isSuccess = status >= 200 && status < 300 || status === 304;
9185  
9186 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Get response data
9187 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( responses ) {
9188 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { response = ajaxHandleResponses( s, jqXHR, responses );
9189 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9190  
9191 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Convert no matter what (that way responseXXX fields are always set)
9192 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { response = ajaxConvert( s, response, jqXHR, isSuccess );
9193  
9194 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // If successful, handle type chaining
9195 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( isSuccess ) {
9196  
9197 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.
9198 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( s.ifModified ) {
9199 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { modified = jqXHR.getResponseHeader( "Last-Modified" );
9200 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( modified ) {
9201 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.lastModified[ cacheURL ] = modified;
9202 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9203 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { modified = jqXHR.getResponseHeader( "etag" );
9204 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( modified ) {
9205 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.etag[ cacheURL ] = modified;
9206 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9207 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9208  
9209 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // if no content
9210 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( status === 204 || s.type === "HEAD" ) {
9211 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { statusText = "nocontent";
9212  
9213 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // if not modified
9214 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else if ( status === 304 ) {
9215 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { statusText = "notmodified";
9216  
9217 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // If we have data, let's convert it
9218 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else {
9219 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { statusText = response.state;
9220 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { success = response.data;
9221 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { error = response.error;
9222 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { isSuccess = !error;
9223 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9224 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else {
9225  
9226 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Extract error from statusText and normalize for non-aborts
9227 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { error = statusText;
9228 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( status || !statusText ) {
9229 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { statusText = "error";
9230 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( status < 0 ) {
9231 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { status = 0;
9232 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9233 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9234 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9235  
9236 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Set data for the fake xhr object
9237 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jqXHR.status = status;
9238 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jqXHR.statusText = ( nativeStatusText || statusText ) + "";
9239  
9240 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Success/Error
9241 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( isSuccess ) {
9242 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { deferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] );
9243 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else {
9244 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { deferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] );
9245 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9246  
9247 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Status-dependent callbacks
9248 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jqXHR.statusCode( statusCode );
9249 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { statusCode = undefined;
9250  
9251 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( fireGlobals ) {
9252 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { globalEventContext.trigger( isSuccess ? "ajaxSuccess" : "ajaxError",
9253 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { [ jqXHR, s, isSuccess ? success : error ] );
9254 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9255  
9256 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Complete
9257 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { completeDeferred.fireWith( callbackContext, [ jqXHR, statusText ] );
9258  
9259 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( fireGlobals ) {
9260 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { globalEventContext.trigger( "ajaxComplete", [ jqXHR, s ] );
9261  
9262 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Handle the global AJAX counter
9263 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( !( --jQuery.active ) ) {
9264 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.event.trigger( "ajaxStop" );
9265 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9266 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9267 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9268  
9269 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return jqXHR;
9270 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
9271  
9272 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { getJSON: function( url, data, callback ) {
9273 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return jQuery.get( url, data, callback, "json" );
9274 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
9275  
9276 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { getScript: function( url, callback ) {
9277 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return jQuery.get( url, undefined, callback, "script" );
9278 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9279 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {} );
9280  
9281 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.each( [ "get", "post" ], function( i, method ) {
9282 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery[ method ] = function( url, data, callback, type ) {
9283  
9284 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Shift arguments if data argument was omitted
9285 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( jQuery.isFunction( data ) ) {
9286 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { type = type || callback;
9287 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { callback = data;
9288 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { data = undefined;
9289 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9290  
9291 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // The url can be an options object (which then must have .url)
9292 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return jQuery.ajax( jQuery.extend( {
9293 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { url: url,
9294 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { type: method,
9295 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { dataType: type,
9296 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { data: data,
9297 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { success: callback
9298 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }, jQuery.isPlainObject( url ) && url ) );
9299 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { };
9300 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {} );
9301  
9302  
9303 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery._evalUrl = function( url ) {
9304 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return jQuery.ajax( {
9305 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { url: url,
9306  
9307 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Make this explicit, since user can override this through ajaxSetup (#11264)
9308 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { type: "GET",
9309 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { dataType: "script",
9310 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { cache: true,
9311 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { async: false,
9312 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { global: false,
9313 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { "throws": true
9314 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } );
9315 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {};
9316  
9317  
9318 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.fn.extend( {
9319 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { wrapAll: function( html ) {
9320 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { var wrap;
9321  
9322 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( this[ 0 ] ) {
9323 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( jQuery.isFunction( html ) ) {
9324 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { html = html.call( this[ 0 ] );
9325 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9326  
9327 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // The elements to wrap the target around
9328 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { wrap = jQuery( html, this[ 0 ].ownerDocument ).eq( 0 ).clone( true );
9329  
9330 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( this[ 0 ].parentNode ) {
9331 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { wrap.insertBefore( this[ 0 ] );
9332 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9333  
9334 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { wrap.map( function() {
9335 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { var elem = this;
9336  
9337 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { while ( elem.firstElementChild ) {
9338 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { elem = elem.firstElementChild;
9339 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9340  
9341 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return elem;
9342 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } ).append( this );
9343 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9344  
9345 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return this;
9346 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
9347  
9348 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { wrapInner: function( html ) {
9349 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( jQuery.isFunction( html ) ) {
9350 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return this.each( function( i ) {
9351 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery( this ).wrapInner( html.call( this, i ) );
9352 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } );
9353 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9354  
9355 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return this.each( function() {
9356 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { var self = jQuery( this ),
9357 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { contents = self.contents();
9358  
9359 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( contents.length ) {
9360 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { contents.wrapAll( html );
9361  
9362 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else {
9363 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { self.append( html );
9364 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9365 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } );
9366 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
9367  
9368 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { wrap: function( html ) {
9369 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { var isFunction = jQuery.isFunction( html );
9370  
9371 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return this.each( function( i ) {
9372 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery( this ).wrapAll( isFunction ? html.call( this, i ) : html );
9373 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } );
9374 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
9375  
9376 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { unwrap: function( selector ) {
9377 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { this.parent( selector ).not( "body" ).each( function() {
9378 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery( this ).replaceWith( this.childNodes );
9379 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } );
9380 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return this;
9381 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9382 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {} );
9383  
9384  
9385 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.expr.pseudos.hidden = function( elem ) {
9386 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return !jQuery.expr.pseudos.visible( elem );
9387 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {};
9388 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.expr.pseudos.visible = function( elem ) {
9389 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return !!( elem.offsetWidth || elem.offsetHeight || elem.getClientRects().length );
9390 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {};
9391  
9392  
9393  
9394  
9395 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.ajaxSettings.xhr = function() {
9396 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { try {
9397 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return new window.XMLHttpRequest();
9398 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } catch ( e ) {}
9399 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {};
9400  
9401 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {var xhrSuccessStatus = {
9402  
9403 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // File protocol always yields status code 0, assume 200
9404 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { 0: 200,
9405  
9406 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Support: IE <=9 only
9407 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // #1450: sometimes IE returns 1223 when it should be 204
9408 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { 1223: 204
9409 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
9410 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { xhrSupported = jQuery.ajaxSettings.xhr();
9411  
9412 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {support.cors = !!xhrSupported && ( "withCredentials" in xhrSupported );
9413 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {support.ajax = xhrSupported = !!xhrSupported;
9414  
9415 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.ajaxTransport( function( options ) {
9416 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { var callback, errorCallback;
9417  
9418 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Cross domain only allowed if supported through XMLHttpRequest
9419 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( support.cors || xhrSupported && !options.crossDomain ) {
9420 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return {
9421 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { send: function( headers, complete ) {
9422 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { var i,
9423 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { xhr = options.xhr();
9424  
9425 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { xhr.open(
9426 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { options.type,
9427 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { options.url,
9428 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { options.async,
9429 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { options.username,
9430 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { options.password
9431 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { );
9432  
9433 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Apply custom fields if provided
9434 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( options.xhrFields ) {
9435 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { for ( i in options.xhrFields ) {
9436 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { xhr[ i ] = options.xhrFields[ i ];
9437 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9438 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9439  
9440 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Override mime type if needed
9441 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( options.mimeType && xhr.overrideMimeType ) {
9442 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { xhr.overrideMimeType( options.mimeType );
9443 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9444  
9445 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // X-Requested-With header
9446 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // For cross-domain requests, seeing as conditions for a preflight are
9447 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // akin to a jigsaw puzzle, we simply never set it to be sure.
9448 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // (it can always be set on a per-request basis or even using ajaxSetup)
9449 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // For same-domain requests, won't change header if already provided.
9450 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( !options.crossDomain && !headers[ "X-Requested-With" ] ) {
9451 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { headers[ "X-Requested-With" ] = "XMLHttpRequest";
9452 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9453  
9454 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Set headers
9455 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { for ( i in headers ) {
9456 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { xhr.setRequestHeader( i, headers[ i ] );
9457 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9458  
9459 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Callback
9460 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { callback = function( type ) {
9461 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return function() {
9462 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( callback ) {
9463 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { callback = errorCallback = xhr.onload =
9464 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { xhr.onerror = xhr.onabort = xhr.onreadystatechange = null;
9465  
9466 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( type === "abort" ) {
9467 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { xhr.abort();
9468 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else if ( type === "error" ) {
9469  
9470 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Support: IE <=9 only
9471 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // On a manual native abort, IE9 throws
9472 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // errors on any property access that is not readyState
9473 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( typeof xhr.status !== "number" ) {
9474 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { complete( 0, "error" );
9475 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else {
9476 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { complete(
9477  
9478 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // File: protocol always yields status 0; see #8605, #14207
9479 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { xhr.status,
9480 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { xhr.statusText
9481 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { );
9482 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9483 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else {
9484 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { complete(
9485 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { xhrSuccessStatus[ xhr.status ] || xhr.status,
9486 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { xhr.statusText,
9487  
9488 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Support: IE <=9 only
9489 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // IE9 has no XHR2 but throws on binary (trac-11426)
9490 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // For XHR2 non-text, let the caller handle it (gh-2498)
9491 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { ( xhr.responseType || "text" ) !== "text" ||
9492 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { typeof xhr.responseText !== "string" ?
9493 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { { binary: xhr.response } :
9494 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { { text: xhr.responseText },
9495 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { xhr.getAllResponseHeaders()
9496 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { );
9497 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9498 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9499 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { };
9500 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { };
9501  
9502 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Listen to events
9503 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { xhr.onload = callback();
9504 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { errorCallback = xhr.onerror = callback( "error" );
9505  
9506 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Support: IE 9 only
9507 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Use onreadystatechange to replace onabort
9508 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // to handle uncaught aborts
9509 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( xhr.onabort !== undefined ) {
9510 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { xhr.onabort = errorCallback;
9511 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else {
9512 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { xhr.onreadystatechange = function() {
9513  
9514 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Check readyState before timeout as it changes
9515 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( xhr.readyState === 4 ) {
9516  
9517 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Allow onerror to be called first,
9518 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // but that will not handle a native abort
9519 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Also, save errorCallback to a variable
9520 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // as xhr.onerror cannot be accessed
9521 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { window.setTimeout( function() {
9522 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( callback ) {
9523 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { errorCallback();
9524 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9525 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } );
9526 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9527 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { };
9528 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9529  
9530 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Create the abort callback
9531 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { callback = callback( "abort" );
9532  
9533 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { try {
9534  
9535 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Do send the request (this may raise an exception)
9536 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { xhr.send( options.hasContent && options.data || null );
9537 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } catch ( e ) {
9538  
9539 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // #14683: Only rethrow if this hasn't been notified as an error yet
9540 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( callback ) {
9541 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { throw e;
9542 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9543 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9544 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
9545  
9546 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { abort: function() {
9547 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( callback ) {
9548 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { callback();
9549 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9550 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9551 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { };
9552 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9553 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {} );
9554  
9555  
9556  
9557  
9558 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {// Prevent auto-execution of scripts when no explicit dataType was provided (See gh-2432)
9559 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.ajaxPrefilter( function( s ) {
9560 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( s.crossDomain ) {
9561 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { s.contents.script = false;
9562 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9563 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {} );
9564  
9565 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {// Install script dataType
9566 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.ajaxSetup( {
9567 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { accepts: {
9568 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { script: "text/javascript, application/javascript, " +
9569 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { "application/ecmascript, application/x-ecmascript"
9570 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
9571 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { contents: {
9572 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { script: /\b(?:java|ecma)script\b/
9573 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
9574 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { converters: {
9575 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { "text script": function( text ) {
9576 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.globalEval( text );
9577 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return text;
9578 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9579 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9580 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {} );
9581  
9582 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {// Handle cache's special case and crossDomain
9583 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.ajaxPrefilter( "script", function( s ) {
9584 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( s.cache === undefined ) {
9585 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { s.cache = false;
9586 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9587 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( s.crossDomain ) {
9588 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { s.type = "GET";
9589 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9590 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {} );
9591  
9592 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {// Bind script tag hack transport
9593 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.ajaxTransport( "script", function( s ) {
9594  
9595 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // This transport only deals with cross domain requests
9596 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( s.crossDomain ) {
9597 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { var script, callback;
9598 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return {
9599 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { send: function( _, complete ) {
9600 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { script = jQuery( "<script>" ).prop( {
9601 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { charset: s.scriptCharset,
9602 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { src: s.url
9603 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } ).on(
9604 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { "load error",
9605 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { callback = function( evt ) {
9606 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { script.remove();
9607 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { callback = null;
9608 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( evt ) {
9609 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { complete( evt.type === "error" ? 404 : 200, evt.type );
9610 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9611 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9612 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { );
9613  
9614 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Use native DOM manipulation to avoid our domManip AJAX trickery
9615 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { document.head.appendChild( script[ 0 ] );
9616 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
9617 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { abort: function() {
9618 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( callback ) {
9619 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { callback();
9620 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9621 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9622 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { };
9623 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9624 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {} );
9625  
9626  
9627  
9628  
9629 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {var oldCallbacks = [],
9630 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { rjsonp = /(=)\?(?=&|$)|\?\?/;
9631  
9632 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {// Default jsonp settings
9633 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.ajaxSetup( {
9634 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jsonp: "callback",
9635 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jsonpCallback: function() {
9636 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { var callback = oldCallbacks.pop() || ( jQuery.expando + "_" + ( nonce++ ) );
9637 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { this[ callback ] = true;
9638 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return callback;
9639 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9640 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {} );
9641  
9642 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {// Detect, normalize options and install callbacks for jsonp requests
9643 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.ajaxPrefilter( "json jsonp", function( s, originalSettings, jqXHR ) {
9644  
9645 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { var callbackName, overwritten, responseContainer,
9646 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jsonProp = s.jsonp !== false && ( rjsonp.test( s.url ) ?
9647 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { "url" :
9648 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { typeof s.data === "string" &&
9649 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { ( s.contentType || "" )
9650 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { .indexOf( "application/x-www-form-urlencoded" ) === 0 &&
9651 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { rjsonp.test( s.data ) && "data"
9652 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { );
9653  
9654 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Handle iff the expected data type is "jsonp" or we have a parameter to set
9655 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( jsonProp || s.dataTypes[ 0 ] === "jsonp" ) {
9656  
9657 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Get callback name, remembering preexisting value associated with it
9658 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { callbackName = s.jsonpCallback = jQuery.isFunction( s.jsonpCallback ) ?
9659 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { s.jsonpCallback() :
9660 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { s.jsonpCallback;
9661  
9662 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Insert callback into url or form data
9663 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( jsonProp ) {
9664 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { s[ jsonProp ] = s[ jsonProp ].replace( rjsonp, "$1" + callbackName );
9665 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else if ( s.jsonp !== false ) {
9666 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { s.url += ( rquery.test( s.url ) ? "&" : "?" ) + s.jsonp + "=" + callbackName;
9667 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9668  
9669 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Use data converter to retrieve json after script execution
9670 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { s.converters[ "script json" ] = function() {
9671 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( !responseContainer ) {
9672 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.error( callbackName + " was not called" );
9673 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9674 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return responseContainer[ 0 ];
9675 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { };
9676  
9677 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Force json dataType
9678 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { s.dataTypes[ 0 ] = "json";
9679  
9680 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Install callback
9681 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { overwritten = window[ callbackName ];
9682 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { window[ callbackName ] = function() {
9683 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { responseContainer = arguments;
9684 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { };
9685  
9686 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Clean-up function (fires after converters)
9687 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jqXHR.always( function() {
9688  
9689 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // If previous value didn't exist - remove it
9690 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( overwritten === undefined ) {
9691 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery( window ).removeProp( callbackName );
9692  
9693 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Otherwise restore preexisting value
9694 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else {
9695 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { window[ callbackName ] = overwritten;
9696 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9697  
9698 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Save back as free
9699 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( s[ callbackName ] ) {
9700  
9701 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Make sure that re-using the options doesn't screw things around
9702 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { s.jsonpCallback = originalSettings.jsonpCallback;
9703  
9704 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Save the callback name for future use
9705 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { oldCallbacks.push( callbackName );
9706 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9707  
9708 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Call if it was a function and we have a response
9709 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( responseContainer && jQuery.isFunction( overwritten ) ) {
9710 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { overwritten( responseContainer[ 0 ] );
9711 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9712  
9713 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { responseContainer = overwritten = undefined;
9714 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } );
9715  
9716 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Delegate to script
9717 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return "script";
9718 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9719 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {} );
9720  
9721  
9722  
9723  
9724 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {// Support: Safari 8 only
9725 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {// In Safari 8 documents created via document.implementation.createHTMLDocument
9726 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {// collapse sibling forms: the second one becomes a child of the first one.
9727 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {// Because of that, this security measure has to be disabled in Safari 8.
9728 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {// https://bugs.webkit.org/show_bug.cgi?id=137337
9729 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {support.createHTMLDocument = ( function() {
9730 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { var body = document.implementation.createHTMLDocument( "" ).body;
9731 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { body.innerHTML = "<form></form><form></form>";
9732 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return body.childNodes.length === 2;
9733 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {} )();
9734  
9735  
9736 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {// Argument "data" should be string of html
9737 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {// context (optional): If specified, the fragment will be created in this context,
9738 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {// defaults to document
9739 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {// keepScripts (optional): If true, will include scripts passed in the html string
9740 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.parseHTML = function( data, context, keepScripts ) {
9741 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( typeof data !== "string" ) {
9742 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return [];
9743 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9744 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( typeof context === "boolean" ) {
9745 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { keepScripts = context;
9746 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { context = false;
9747 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9748  
9749 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { var base, parsed, scripts;
9750  
9751 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( !context ) {
9752  
9753 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Stop scripts or inline event handlers from being executed immediately
9754 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // by using document.implementation
9755 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( support.createHTMLDocument ) {
9756 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { context = document.implementation.createHTMLDocument( "" );
9757  
9758 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Set the base href for the created document
9759 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // so any parsed elements with URLs
9760 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // are based on the document's URL (gh-2965)
9761 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { base = context.createElement( "base" );
9762 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { base.href = document.location.href;
9763 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { context.head.appendChild( base );
9764 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else {
9765 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { context = document;
9766 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9767 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9768  
9769 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { parsed = rsingleTag.exec( data );
9770 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { scripts = !keepScripts && [];
9771  
9772 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Single tag
9773 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( parsed ) {
9774 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return [ context.createElement( parsed[ 1 ] ) ];
9775 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9776  
9777 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { parsed = buildFragment( [ data ], context, scripts );
9778  
9779 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( scripts && scripts.length ) {
9780 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery( scripts ).remove();
9781 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9782  
9783 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return jQuery.merge( [], parsed.childNodes );
9784 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {};
9785  
9786  
9787 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {/**
9788 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { * Load a url into a page
9789 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { */
9790 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.fn.load = function( url, params, callback ) {
9791 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { var selector, type, response,
9792 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { self = this,
9793 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { off = url.indexOf( " " );
9794  
9795 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( off > -1 ) {
9796 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { selector = stripAndCollapse( url.slice( off ) );
9797 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { url = url.slice( 0, off );
9798 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9799  
9800 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // If it's a function
9801 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( jQuery.isFunction( params ) ) {
9802  
9803 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // We assume that it's the callback
9804 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { callback = params;
9805 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { params = undefined;
9806  
9807 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Otherwise, build a param string
9808 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else if ( params && typeof params === "object" ) {
9809 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { type = "POST";
9810 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9811  
9812 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // If we have elements to modify, make the request
9813 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( self.length > 0 ) {
9814 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.ajax( {
9815 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { url: url,
9816  
9817 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // If "type" variable is undefined, then "GET" method will be used.
9818 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Make value of this field explicit since
9819 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // user can override it through ajaxSetup method
9820 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { type: type || "GET",
9821 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { dataType: "html",
9822 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { data: params
9823 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } ).done( function( responseText ) {
9824  
9825 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Save response for use in complete callback
9826 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { response = arguments;
9827  
9828 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { self.html( selector ?
9829  
9830 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // If a selector was specified, locate the right elements in a dummy div
9831 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Exclude scripts to avoid IE 'Permission Denied' errors
9832 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery( "<div>" ).append( jQuery.parseHTML( responseText ) ).find( selector ) :
9833  
9834 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Otherwise use the full result
9835 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { responseText );
9836  
9837 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // If the request succeeds, this function gets "data", "status", "jqXHR"
9838 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // but they are ignored because response was set above.
9839 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // If it fails, this function gets "jqXHR", "status", "error"
9840 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } ).always( callback && function( jqXHR, status ) {
9841 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { self.each( function() {
9842 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { callback.apply( this, response || [ jqXHR.responseText, status, jqXHR ] );
9843 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } );
9844 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } );
9845 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9846  
9847 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return this;
9848 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {};
9849  
9850  
9851  
9852  
9853 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {// Attach a bunch of functions for handling common AJAX events
9854 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.each( [
9855 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { "ajaxStart",
9856 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { "ajaxStop",
9857 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { "ajaxComplete",
9858 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { "ajaxError",
9859 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { "ajaxSuccess",
9860 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { "ajaxSend"
9861 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {], function( i, type ) {
9862 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.fn[ type ] = function( fn ) {
9863 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return this.on( type, fn );
9864 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { };
9865 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {} );
9866  
9867  
9868  
9869  
9870 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.expr.pseudos.animated = function( elem ) {
9871 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return jQuery.grep( jQuery.timers, function( fn ) {
9872 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return elem === fn.elem;
9873 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } ).length;
9874 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {};
9875  
9876  
9877  
9878  
9879 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {/**
9880 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { * Gets a window from an element
9881 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { */
9882 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {function getWindow( elem ) {
9883 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return jQuery.isWindow( elem ) ? elem : elem.nodeType === 9 && elem.defaultView;
9884 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {}
9885  
9886 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.offset = {
9887 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { setOffset: function( elem, options, i ) {
9888 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { var curPosition, curLeft, curCSSTop, curTop, curOffset, curCSSLeft, calculatePosition,
9889 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { position = jQuery.css( elem, "position" ),
9890 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { curElem = jQuery( elem ),
9891 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { props = {};
9892  
9893 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Set position first, in-case top/left are set even on static elem
9894 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( position === "static" ) {
9895 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { elem.style.position = "relative";
9896 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9897  
9898 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { curOffset = curElem.offset();
9899 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { curCSSTop = jQuery.css( elem, "top" );
9900 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { curCSSLeft = jQuery.css( elem, "left" );
9901 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { calculatePosition = ( position === "absolute" || position === "fixed" ) &&
9902 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { ( curCSSTop + curCSSLeft ).indexOf( "auto" ) > -1;
9903  
9904 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Need to be able to calculate position if either
9905 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // top or left is auto and position is either absolute or fixed
9906 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( calculatePosition ) {
9907 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { curPosition = curElem.position();
9908 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { curTop = curPosition.top;
9909 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { curLeft = curPosition.left;
9910  
9911 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else {
9912 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { curTop = parseFloat( curCSSTop ) || 0;
9913 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { curLeft = parseFloat( curCSSLeft ) || 0;
9914 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9915  
9916 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( jQuery.isFunction( options ) ) {
9917  
9918 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Use jQuery.extend here to allow modification of coordinates argument (gh-1848)
9919 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { options = options.call( elem, i, jQuery.extend( {}, curOffset ) );
9920 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9921  
9922 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( options.top != null ) {
9923 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { props.top = ( options.top - curOffset.top ) + curTop;
9924 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9925 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( options.left != null ) {
9926 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { props.left = ( options.left - curOffset.left ) + curLeft;
9927 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9928  
9929 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( "using" in options ) {
9930 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { options.using.call( elem, props );
9931  
9932 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else {
9933 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { curElem.css( props );
9934 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9935 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9936 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {};
9937  
9938 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.fn.extend( {
9939 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { offset: function( options ) {
9940  
9941 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Preserve chaining for setter
9942 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( arguments.length ) {
9943 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return options === undefined ?
9944 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { this :
9945 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { this.each( function( i ) {
9946 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.offset.setOffset( this, options, i );
9947 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } );
9948 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9949  
9950 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { var docElem, win, rect, doc,
9951 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { elem = this[ 0 ];
9952  
9953 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( !elem ) {
9954 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return;
9955 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9956  
9957 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Support: IE <=11 only
9958 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Running getBoundingClientRect on a
9959 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // disconnected node in IE throws an error
9960 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( !elem.getClientRects().length ) {
9961 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return { top: 0, left: 0 };
9962 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9963  
9964 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { rect = elem.getBoundingClientRect();
9965  
9966 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Make sure element is not hidden (display: none)
9967 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( rect.width || rect.height ) {
9968 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { doc = elem.ownerDocument;
9969 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { win = getWindow( doc );
9970 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { docElem = doc.documentElement;
9971  
9972 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return {
9973 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { top: rect.top + win.pageYOffset - docElem.clientTop,
9974 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { left: rect.left + win.pageXOffset - docElem.clientLeft
9975 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { };
9976 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9977  
9978 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Return zeros for disconnected and hidden elements (gh-2310)
9979 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return rect;
9980 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
9981  
9982 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { position: function() {
9983 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( !this[ 0 ] ) {
9984 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return;
9985 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9986  
9987 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { var offsetParent, offset,
9988 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { elem = this[ 0 ],
9989 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { parentOffset = { top: 0, left: 0 };
9990  
9991 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Fixed elements are offset from window (parentOffset = {top:0, left: 0},
9992 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // because it is its only offset parent
9993 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( jQuery.css( elem, "position" ) === "fixed" ) {
9994  
9995 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Assume getBoundingClientRect is there when computed position is fixed
9996 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { offset = elem.getBoundingClientRect();
9997  
9998 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else {
9999  
10000 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Get *real* offsetParent
10001 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { offsetParent = this.offsetParent();
10002  
10003 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Get correct offsets
10004 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { offset = this.offset();
10005 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( !jQuery.nodeName( offsetParent[ 0 ], "html" ) ) {
10006 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { parentOffset = offsetParent.offset();
10007 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
10008  
10009 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Add offsetParent borders
10010 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { parentOffset = {
10011 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { top: parentOffset.top + jQuery.css( offsetParent[ 0 ], "borderTopWidth", true ),
10012 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { left: parentOffset.left + jQuery.css( offsetParent[ 0 ], "borderLeftWidth", true )
10013 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { };
10014 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
10015  
10016 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Subtract parent offsets and element margins
10017 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return {
10018 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { top: offset.top - parentOffset.top - jQuery.css( elem, "marginTop", true ),
10019 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { left: offset.left - parentOffset.left - jQuery.css( elem, "marginLeft", true )
10020 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { };
10021 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
10022  
10023 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // This method will return documentElement in the following cases:
10024 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // 1) For the element inside the iframe without offsetParent, this method will return
10025 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // documentElement of the parent window
10026 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // 2) For the hidden or detached element
10027 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // 3) For body or html element, i.e. in case of the html node - it will return itself
10028 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { //
10029 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // but those exceptions were never presented as a real life use-cases
10030 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // and might be considered as more preferable results.
10031 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { //
10032 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // This logic, however, is not guaranteed and can change at any point in the future
10033 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { offsetParent: function() {
10034 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return this.map( function() {
10035 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { var offsetParent = this.offsetParent;
10036  
10037 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { while ( offsetParent && jQuery.css( offsetParent, "position" ) === "static" ) {
10038 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { offsetParent = offsetParent.offsetParent;
10039 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
10040  
10041 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return offsetParent || documentElement;
10042 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } );
10043 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
10044 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {} );
10045  
10046 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {// Create scrollLeft and scrollTop methods
10047 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.each( { scrollLeft: "pageXOffset", scrollTop: "pageYOffset" }, function( method, prop ) {
10048 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { var top = "pageYOffset" === prop;
10049  
10050 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.fn[ method ] = function( val ) {
10051 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return access( this, function( elem, method, val ) {
10052 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { var win = getWindow( elem );
10053  
10054 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( val === undefined ) {
10055 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return win ? win[ prop ] : elem[ method ];
10056 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
10057  
10058 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( win ) {
10059 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { win.scrollTo(
10060 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { !top ? val : win.pageXOffset,
10061 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { top ? val : win.pageYOffset
10062 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { );
10063  
10064 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else {
10065 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { elem[ method ] = val;
10066 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
10067 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }, method, val, arguments.length );
10068 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { };
10069 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {} );
10070  
10071 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {// Support: Safari <=7 - 9.1, Chrome <=37 - 49
10072 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {// Add the top/left cssHooks using jQuery.fn.position
10073 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {// Webkit bug: https://bugs.webkit.org/show_bug.cgi?id=29084
10074 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {// Blink bug: https://bugs.chromium.org/p/chromium/issues/detail?id=589347
10075 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {// getComputedStyle returns percent when specified for top/left/bottom/right;
10076 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {// rather than make the css module depend on the offset module, just check for it here
10077 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.each( [ "top", "left" ], function( i, prop ) {
10078 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.cssHooks[ prop ] = addGetHookIf( support.pixelPosition,
10079 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { function( elem, computed ) {
10080 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( computed ) {
10081 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { computed = curCSS( elem, prop );
10082  
10083 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // If curCSS returns percentage, fallback to offset
10084 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return rnumnonpx.test( computed ) ?
10085 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery( elem ).position()[ prop ] + "px" :
10086 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { computed;
10087 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
10088 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
10089 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { );
10090 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {} );
10091  
10092  
10093 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {// Create innerHeight, innerWidth, height, width, outerHeight and outerWidth methods
10094 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.each( { Height: "height", Width: "width" }, function( name, type ) {
10095 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.each( { padding: "inner" + name, content: type, "": "outer" + name },
10096 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { function( defaultExtra, funcName ) {
10097  
10098 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Margin is only for outerHeight, outerWidth
10099 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.fn[ funcName ] = function( margin, value ) {
10100 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { var chainable = arguments.length && ( defaultExtra || typeof margin !== "boolean" ),
10101 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { extra = defaultExtra || ( margin === true || value === true ? "margin" : "border" );
10102  
10103 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return access( this, function( elem, type, value ) {
10104 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { var doc;
10105  
10106 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( jQuery.isWindow( elem ) ) {
10107  
10108 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // $( window ).outerWidth/Height return w/h including scrollbars (gh-1729)
10109 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return funcName.indexOf( "outer" ) === 0 ?
10110 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { elem[ "inner" + name ] :
10111 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { elem.document.documentElement[ "client" + name ];
10112 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
10113  
10114 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Get document width or height
10115 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( elem.nodeType === 9 ) {
10116 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { doc = elem.documentElement;
10117  
10118 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Either scroll[Width/Height] or offset[Width/Height] or client[Width/Height],
10119 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // whichever is greatest
10120 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return Math.max(
10121 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { elem.body[ "scroll" + name ], doc[ "scroll" + name ],
10122 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { elem.body[ "offset" + name ], doc[ "offset" + name ],
10123 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { doc[ "client" + name ]
10124 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { );
10125 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
10126  
10127 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return value === undefined ?
10128  
10129 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Get width or height on the element, requesting but not forcing parseFloat
10130 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.css( elem, type, extra ) :
10131  
10132 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Set width or height on the element
10133 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.style( elem, type, value, extra );
10134 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }, type, chainable ? margin : undefined, chainable );
10135 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { };
10136 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } );
10137 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {} );
10138  
10139  
10140 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.fn.extend( {
10141  
10142 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { bind: function( types, data, fn ) {
10143 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return this.on( types, null, data, fn );
10144 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
10145 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { unbind: function( types, fn ) {
10146 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return this.off( types, null, fn );
10147 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
10148  
10149 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { delegate: function( selector, types, data, fn ) {
10150 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return this.on( types, selector, data, fn );
10151 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
10152 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { undelegate: function( selector, types, fn ) {
10153  
10154 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // ( namespace ) or ( selector, types [, fn] )
10155 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return arguments.length === 1 ?
10156 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { this.off( selector, "**" ) :
10157 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { this.off( types, selector || "**", fn );
10158 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
10159 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {} );
10160  
10161 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.parseJSON = JSON.parse;
10162  
10163  
10164  
10165  
10166 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {// Register as a named AMD module, since jQuery can be concatenated with other
10167 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {// files that may use define, but not via a proper concatenation script that
10168 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {// understands anonymous AMD modules. A named AMD is safest and most robust
10169 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {// way to register. Lowercase jquery is used because AMD module names are
10170 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {// derived from file names, and jQuery is normally delivered in a lowercase
10171 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {// file name. Do this after creating the global so that if an AMD module wants
10172 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {// to call noConflict to hide this version of jQuery, it will work.
10173  
10174 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {// Note that for maximum portability, libraries that are not jQuery should
10175 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {// declare themselves as anonymous modules, and avoid setting a global if an
10176 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {// AMD loader is present. jQuery is a special case. For more information, see
10177 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {// https://github.com/jrburke/requirejs/wiki/Updating-existing-libraries#wiki-anon
10178  
10179 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {if ( typeof define === "function" && define.amd ) {
10180 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { define( "jquery", [], function() {
10181 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return jQuery;
10182 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { } );
10183 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {}
10184  
10185  
10186  
10187  
10188 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {var
10189  
10190 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Map over jQuery in case of overwrite
10191 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { _jQuery = window.jQuery,
10192  
10193 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Map over the $ in case of overwrite
10194 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { _$ = window.$;
10195  
10196 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.noConflict = function( deep ) {
10197 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( window.$ === jQuery ) {
10198 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { window.$ = _$;
10199 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
10200  
10201 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( deep && window.jQuery === jQuery ) {
10202 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { window.jQuery = _jQuery;
10203 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
10204  
10205 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { return jQuery;
10206 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {};
10207  
10208 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {// Expose jQuery and $ identifiers, even in AMD
10209 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {// (#7102#comment:10, https://github.com/jquery/jquery/pull/557)
10210 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {// and CommonJS for browser emulators (#13566)
10211 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {if ( !noGlobal ) {
10212 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) { window.jQuery = window.$ = jQuery;
10213 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {}
10214  
10215  
10216  
10217  
10218  
10219 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {return jQuery;
10220 <([a-z][^\/\0><\/\1><[\w\W]+><([a-z][^\/\0><|&#?\w+;/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0><1.8 extension point< 4; i += 2 - includeWidth ) {< length; index++ ) {< length; index++ ) {< 1 && length ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< length; index++ ) {< timers.length; i++ ) {} );