[ Index ]

PHP Cross Reference of WordPress

title

Body

[close]

/wp-includes/js/jquery/ui/ -> effect-transfer.js (source)

   1  /*!
   2   * jQuery UI Effects Transfer 1.13.1
   3   * http://jqueryui.com
   4   *
   5   * Copyright jQuery Foundation and other contributors
   6   * Released under the MIT license.
   7   * http://jquery.org/license
   8   */
   9  
  10  //>>label: Transfer Effect
  11  //>>group: Effects
  12  //>>description: Displays a transfer effect from one element to another.
  13  //>>docs: http://api.jqueryui.com/transfer-effect/
  14  //>>demos: http://jqueryui.com/effect/
  15  
  16  ( function( factory ) {
  17      "use strict";
  18  
  19      if ( typeof define === "function" && define.amd ) {
  20  
  21          // AMD. Register as an anonymous module.
  22          define( [
  23              "jquery",
  24              "./effect"
  25          ], factory );
  26      } else {
  27  
  28          // Browser globals
  29          factory( jQuery );
  30      }
  31  } )( function( $ ) {
  32  "use strict";
  33  
  34  var effect;
  35  if ( $.uiBackCompat !== false ) {
  36      effect = $.effects.define( "transfer", function( options, done ) {
  37          $( this ).transfer( options, done );
  38      } );
  39  }
  40  return effect;
  41  
  42  } );


Generated: Fri Mar 29 01:00:02 2024 Cross-referenced by PHPXref 0.7.1