Edit File by line
/home/zeestwma/richards.../wp-inclu.../js/jquery/ui
File: effect-transfer.js
/*!
[0] Fix | Delete
* jQuery UI Effects Transfer 1.13.3
[1] Fix | Delete
* https://jqueryui.com
[2] Fix | Delete
*
[3] Fix | Delete
* Copyright OpenJS Foundation and other contributors
[4] Fix | Delete
* Released under the MIT license.
[5] Fix | Delete
* https://jquery.org/license
[6] Fix | Delete
*/
[7] Fix | Delete
[8] Fix | Delete
//>>label: Transfer Effect
[9] Fix | Delete
//>>group: Effects
[10] Fix | Delete
//>>description: Displays a transfer effect from one element to another.
[11] Fix | Delete
//>>docs: https://api.jqueryui.com/transfer-effect/
[12] Fix | Delete
//>>demos: https://jqueryui.com/effect/
[13] Fix | Delete
[14] Fix | Delete
( function( factory ) {
[15] Fix | Delete
"use strict";
[16] Fix | Delete
[17] Fix | Delete
if ( typeof define === "function" && define.amd ) {
[18] Fix | Delete
[19] Fix | Delete
// AMD. Register as an anonymous module.
[20] Fix | Delete
define( [
[21] Fix | Delete
"jquery",
[22] Fix | Delete
"../version",
[23] Fix | Delete
"../effect"
[24] Fix | Delete
], factory );
[25] Fix | Delete
} else {
[26] Fix | Delete
[27] Fix | Delete
// Browser globals
[28] Fix | Delete
factory( jQuery );
[29] Fix | Delete
}
[30] Fix | Delete
} )( function( $ ) {
[31] Fix | Delete
"use strict";
[32] Fix | Delete
[33] Fix | Delete
var effect;
[34] Fix | Delete
if ( $.uiBackCompat !== false ) {
[35] Fix | Delete
effect = $.effects.define( "transfer", function( options, done ) {
[36] Fix | Delete
$( this ).transfer( options, done );
[37] Fix | Delete
} );
[38] Fix | Delete
}
[39] Fix | Delete
return effect;
[40] Fix | Delete
[41] Fix | Delete
} );
[42] Fix | Delete
[43] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function