/home/techb158/workloadmatch.com/bower_components/jquery-ui/ui
NameSizeModeActions
i18n/-0777rm
minified/-0777rm
.jshintrc3360777editdlrm
accordion.js150210777editdlrm
autocomplete.js163860777editdlrm
button.js113270777editdlrm
core.js76620777editdlrm
datepicker.js779730777editdlrm
dialog.js218050777editdlrm
draggable.js349940777editdlrm
droppable.js116560777editdlrm
effect-blind.js21010777editdlrm
effect-bounce.js29660777editdlrm
effect-clip.js16450777editdlrm
effect-drop.js16510777editdlrm
effect-explode.js25810777editdlrm
effect-fade.js7330777editdlrm
effect-fold.js18750777editdlrm
effect-highlight.js11790777editdlrm
effect-puff.js12360777editdlrm
effect-pulsate.js15510777editdlrm
effect-scale.js20030777editdlrm
effect-shake.js21290777editdlrm
effect-size.js62360777editdlrm
effect-slide.js16490777editdlrm
effect-transfer.js14100777editdlrm
effect.js322830777editdlrm
menu.js169800777editdlrm
mouse.js53430777editdlrm
position.js160920777editdlrm
progressbar.js36660777editdlrm
resizable.js285840777editdlrm
selectable.js71360777editdlrm
selectmenu.js137640777editdlrm
slider.js192050777editdlrm
sortable.js433800777editdlrm
spinner.js129090777editdlrm
tabs.js231280777editdlrm
tooltip.js130450777editdlrm
widget.js158140777editdlrm
Edit: /home/techb158/workloadmatch.com/bower_components/jquery-ui/ui/effect-drop.js (1651B)
/*! * jQuery UI Effects Drop 1.11.4 * http://jqueryui.com * * Copyright jQuery Foundation and other contributors * Released under the MIT license. * http://jquery.org/license * * http://api.jqueryui.com/drop-effect/ */ (function( factory ) { if ( typeof define === "function" && define.amd ) { // AMD. Register as an anonymous module. define([ "jquery", "./effect" ], factory ); } else { // Browser globals factory( jQuery ); } }(function( $ ) { return $.effects.effect.drop = function( o, done ) { var el = $( this ), props = [ "position", "top", "bottom", "left", "right", "opacity", "height", "width" ], mode = $.effects.setMode( el, o.mode || "hide" ), show = mode === "show", direction = o.direction || "left", ref = ( direction === "up" || direction === "down" ) ? "top" : "left", motion = ( direction === "up" || direction === "left" ) ? "pos" : "neg", animation = { opacity: show ? 1 : 0 }, distance; // Adjust $.effects.save( el, props ); el.show(); $.effects.createWrapper( el ); distance = o.distance || el[ ref === "top" ? "outerHeight" : "outerWidth" ]( true ) / 2; if ( show ) { el .css( "opacity", 0 ) .css( ref, motion === "pos" ? -distance : distance ); } // Animation animation[ ref ] = ( show ? ( motion === "pos" ? "+=" : "-=" ) : ( motion === "pos" ? "-=" : "+=" ) ) + distance; // Animate el.animate( animation, { queue: false, duration: o.duration, easing: o.easing, complete: function() { if ( mode === "hide" ) { el.hide(); } $.effects.restore( el, props ); $.effects.removeWrapper( el ); done(); } }); }; }));