Make WordPress Core


Ignore:
Timestamp:
08/30/2012 01:49:47 AM (12 years ago)
Author:
nacin
Message:

jQuery UI 1.9 RC.

Adds Tooltip, Menu, and Spinner.
Autocomplete depends on Menu.
Renames Effects files.

1.9 final is expected next week.
see #21736.

File:
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/js/jquery/ui/jquery.ui.effect-transfer.min.js

    r21653 r21657  
    1 /*! jQuery UI - v1.8.23 - 2012-08-15
    2 * https://github.com/jquery/jquery-ui
    3 * Includes: jquery.effects.transfer.js
    4 * Copyright (c) 2012 AUTHORS.txt; Licensed MIT, GPL */
    5 (function(a,b){a.effects.transfer=function(b){return this.queue(function(){var c=a(this),d=a(b.options.to),e=d.offset(),f={top:e.top,left:e.left,height:d.innerHeight(),width:d.innerWidth()},g=c.offset(),h=a('<div class="ui-effects-transfer"></div>').appendTo(document.body).addClass(b.options.className).css({top:g.top,left:g.left,height:c.innerHeight(),width:c.innerWidth(),position:"absolute"}).animate(f,b.duration,b.options.easing,function(){h.remove(),b.callback&&b.callback.apply(c[0],arguments),c.dequeue()})})}})(jQuery);
     1/*! jQuery UI - v1.9.0pre - 2012-08-29
     2* http://jqueryui.com
     3* Includes: jquery.ui.effect-transfer.js
     4* Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */
     5(function(e,t){e.effects.effect.transfer=function(t,n){var r=e(this),i=e(t.to),s=i.css("position")==="fixed",o=e("body"),u=s?o.scrollTop():0,a=s?o.scrollLeft():0,f=i.offset(),l={top:f.top-u,left:f.left-a,height:i.innerHeight(),width:i.innerWidth()},c=r.offset(),h=e('<div class="ui-effects-transfer"></div>').appendTo(document.body).addClass(t.className).css({top:c.top-u,left:c.left-a,height:r.innerHeight(),width:r.innerWidth(),position:s?"fixed":"absolute"}).animate(l,t.duration,t.easing,function(){h.remove(),n()})}})(jQuery);
Note: See TracChangeset for help on using the changeset viewer.