Changeset 24395
- Timestamp:
- 06/01/2013 09:16:11 AM (13 years ago)
- Location:
- trunk/wp-includes
- Files:
-
- 2 edited
-
js/jquery/jquery.js (modified) (11 diffs)
-
script-loader.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/js/jquery/jquery.js
r24364 r24395 1 1 /*! 2 * jQuery JavaScript Library v1.10. 02 * jQuery JavaScript Library v1.10.1 3 3 * http://jquery.com/ 4 4 * … … 10 10 * http://jquery.org/license 11 11 * 12 * Date: 2013-05- 24T18:39Z12 * Date: 2013-05-30T21:49Z 13 13 */ 14 14 (function( window, undefined ) { … … 47 47 core_deletedIds = [], 48 48 49 core_version = "1.10. 0",49 core_version = "1.10.1", 50 50 51 51 // Save a reference to some core methods … … 1008 1008 * http://jquery.org/license 1009 1009 * 1010 * Date: 2013-05- 151010 * Date: 2013-05-27 1011 1011 */ 1012 1012 (function( window, undefined ) { … … 1493 1493 */ 1494 1494 setDocument = Sizzle.setDocument = function( node ) { 1495 var doc = node ? node.ownerDocument || node : preferredDoc; 1495 var doc = node ? node.ownerDocument || node : preferredDoc, 1496 parent = doc.parentWindow; 1496 1497 1497 1498 // If no document and documentElement is available, return … … 1506 1507 // Support tests 1507 1508 documentIsHTML = !isXML( doc ); 1509 1510 // Support: IE>8 1511 // If iframe document is assigned to "document" variable and if iframe has been reloaded, 1512 // IE will throw "permission denied" error when accessing "document" variable, see jQuery #13936 1513 if ( parent && parent.frameElement ) { 1514 parent.attachEvent( "onbeforeunload", function() { 1515 setDocument(); 1516 }); 1517 } 1508 1518 1509 1519 /* Attributes … … 3952 3962 } 3953 3963 3954 hooks.cur = fn;3955 3964 if ( fn ) { 3956 3965 … … 8865 8874 // Update tween properties 8866 8875 if ( parts ) { 8876 start = tween.start = +start || +target || 0; 8867 8877 tween.unit = unit; 8868 tween.start = +start || +target || 0;8869 8878 // If a +=/-= token was provided, we're doing a relative animation 8870 8879 tween.end = parts[ 1 ] ? … … 9313 9322 // Operate on a copy of prop so per-property easing won't be lost 9314 9323 var anim = Animation( this, jQuery.extend( {}, prop ), optall ); 9315 doAnimation.finish = function() { 9316 anim.stop( true ); 9317 }; 9324 9318 9325 // Empty animations, or finishing resolves immediately 9319 9326 if ( empty || jQuery._data( this, "finish" ) ) { … … 9395 9402 jQuery.queue( this, type, [] ); 9396 9403 9397 if ( hooks && hooks. cur && hooks.cur.finish) {9398 hooks. cur.finish.call( this);9404 if ( hooks && hooks.stop ) { 9405 hooks.stop.call( this, true ); 9399 9406 } 9400 9407 … … 9776 9783 9777 9784 // })(); 9778 if ( typeof module === "object" && typeof module.exports === "object" ) {9785 if ( typeof module === "object" && module && typeof module.exports === "object" ) { 9779 9786 // Expose jQuery as module.exports in loaders that implement the Node 9780 9787 // module pattern (including browserify). Do not create the global, since -
trunk/wp-includes/script-loader.php
r24388 r24395 133 133 134 134 // jQuery 135 $scripts->add( 'jquery', false, array( 'jquery-core', 'jquery-migrate' ), '1.10. 0' );136 $scripts->add( 'jquery-core', '/wp-includes/js/jquery/jquery.js', array(), '1.10. 0' );135 $scripts->add( 'jquery', false, array( 'jquery-core', 'jquery-migrate' ), '1.10.1' ); 136 $scripts->add( 'jquery-core', '/wp-includes/js/jquery/jquery.js', array(), '1.10.1' ); 137 137 $scripts->add( 'jquery-migrate', '/wp-includes/js/jquery/jquery-migrate.js', array(), '1.2.1' ); 138 138
Note: See TracChangeset
for help on using the changeset viewer.