corrade-http-templates – Blame information for rev

Subversion Repositories:
Rev:
Rev Author Line No. Line
42 office 1 /*!
2 * jQuery UI Effects Transfer 1.12.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 if ( typeof define === "function" && define.amd ) {
18  
19 // AMD. Register as an anonymous module.
20 define( [
21 "jquery",
22 "../version",
23 "../effect"
24 ], factory );
25 } else {
26  
27 // Browser globals
28 factory( jQuery );
29 }
30 }( function( $ ) {
31  
32 var effect;
33 if ( $.uiBackCompat !== false ) {
34 effect = $.effects.define( "transfer", function( options, done ) {
35 $( this ).transfer( options, done );
36 } );
37 }
38 return effect;
39  
40 } ) );