[ Avaa Bypassed ]




Upload:

Command:

www-data@18.116.14.133: ~ $
/*!
 * jQuery UI Effects Size 1.13.2
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 */

//>>label: Size Effect
//>>group: Effects
//>>description: Resize an element to a specified width and height.
//>>docs: http://api.jqueryui.com/size-effect/
//>>demos: http://jqueryui.com/effect/

( function( factory ) {
	"use strict";

	if ( typeof define === "function" && define.amd ) {

		// AMD. Register as an anonymous module.
		define( [
			"jquery",
			"./effect"
		], factory );
	} else {

		// Browser globals
		factory( jQuery );
	}
} )( function( $ ) {
"use strict";

return $.effects.define( "size", function( options, done ) {

	// Create element
	var baseline, factor, temp,
		element = $( this ),

		// Copy for children
		cProps = [ "fontSize" ],
		vProps = [ "borderTopWidth", "borderBottomWidth", "paddingTop", "paddingBottom" ],
		hProps = [ "borderLeftWidth", "borderRightWidth", "paddingLeft", "paddingRight" ],

		// Set options
		mode = options.mode,
		restore = mode !== "effect",
		scale = options.scale || "both",
		origin = options.origin || [ "middle", "center" ],
		position = element.css( "position" ),
		pos = element.position(),
		original = $.effects.scaledDimensions( element ),
		from = options.from || original,
		to = options.to || $.effects.scaledDimensions( element, 0 );

	$.effects.createPlaceholder( element );

	if ( mode === "show" ) {
		temp = from;
		from = to;
		to = temp;
	}

	// Set scaling factor
	factor = {
		from: {
			y: from.height / original.height,
			x: from.width / original.width
		},
		to: {
			y: to.height / original.height,
			x: to.width / original.width
		}
	};

	// Scale the css box
	if ( scale === "box" || scale === "both" ) {

		// Vertical props scaling
		if ( factor.from.y !== factor.to.y ) {
			from = $.effects.setTransition( element, vProps, factor.from.y, from );
			to = $.effects.setTransition( element, vProps, factor.to.y, to );
		}

		// Horizontal props scaling
		if ( factor.from.x !== factor.to.x ) {
			from = $.effects.setTransition( element, hProps, factor.from.x, from );
			to = $.effects.setTransition( element, hProps, factor.to.x, to );
		}
	}

	// Scale the content
	if ( scale === "content" || scale === "both" ) {

		// Vertical props scaling
		if ( factor.from.y !== factor.to.y ) {
			from = $.effects.setTransition( element, cProps, factor.from.y, from );
			to = $.effects.setTransition( element, cProps, factor.to.y, to );
		}
	}

	// Adjust the position properties based on the provided origin points
	if ( origin ) {
		baseline = $.effects.getBaseline( origin, original );
		from.top = ( original.outerHeight - from.outerHeight ) * baseline.y + pos.top;
		from.left = ( original.outerWidth - from.outerWidth ) * baseline.x + pos.left;
		to.top = ( original.outerHeight - to.outerHeight ) * baseline.y + pos.top;
		to.left = ( original.outerWidth - to.outerWidth ) * baseline.x + pos.left;
	}
	delete from.outerHeight;
	delete from.outerWidth;
	element.css( from );

	// Animate the children if desired
	if ( scale === "content" || scale === "both" ) {

		vProps = vProps.concat( [ "marginTop", "marginBottom" ] ).concat( cProps );
		hProps = hProps.concat( [ "marginLeft", "marginRight" ] );

		// Only animate children with width attributes specified
		// TODO: is this right? should we include anything with css width specified as well
		element.find( "*[width]" ).each( function() {
			var child = $( this ),
				childOriginal = $.effects.scaledDimensions( child ),
				childFrom = {
					height: childOriginal.height * factor.from.y,
					width: childOriginal.width * factor.from.x,
					outerHeight: childOriginal.outerHeight * factor.from.y,
					outerWidth: childOriginal.outerWidth * factor.from.x
				},
				childTo = {
					height: childOriginal.height * factor.to.y,
					width: childOriginal.width * factor.to.x,
					outerHeight: childOriginal.height * factor.to.y,
					outerWidth: childOriginal.width * factor.to.x
				};

			// Vertical props scaling
			if ( factor.from.y !== factor.to.y ) {
				childFrom = $.effects.setTransition( child, vProps, factor.from.y, childFrom );
				childTo = $.effects.setTransition( child, vProps, factor.to.y, childTo );
			}

			// Horizontal props scaling
			if ( factor.from.x !== factor.to.x ) {
				childFrom = $.effects.setTransition( child, hProps, factor.from.x, childFrom );
				childTo = $.effects.setTransition( child, hProps, factor.to.x, childTo );
			}

			if ( restore ) {
				$.effects.saveStyle( child );
			}

			// Animate children
			child.css( childFrom );
			child.animate( childTo, options.duration, options.easing, function() {

				// Restore children
				if ( restore ) {
					$.effects.restoreStyle( child );
				}
			} );
		} );
	}

	// Animate
	element.animate( to, {
		queue: false,
		duration: options.duration,
		easing: options.easing,
		complete: function() {

			var offset = element.offset();

			if ( to.opacity === 0 ) {
				element.css( "opacity", from.opacity );
			}

			if ( !restore ) {
				element
					.css( "position", position === "static" ? "relative" : position )
					.offset( offset );

				// Need to save style here so that automatic style restoration
				// doesn't restore to the original styles from before the animation.
				$.effects.saveStyle( element );
			}

			done();
		}
	} );

} );

} );

Filemanager

Name Type Size Permission Actions
accordion.js File 15.7 KB 0777
accordion.min.js File 8.61 KB 0777
autocomplete.js File 17.03 KB 0777
autocomplete.min.js File 8.27 KB 0777
button.js File 11.41 KB 0777
button.min.js File 5.99 KB 0777
checkboxradio.js File 7.36 KB 0777
checkboxradio.min.js File 4.21 KB 0777
controlgroup.js File 8.41 KB 0777
controlgroup.min.js File 4.29 KB 0777
core.js File 48.68 KB 0777
core.min.js File 20.94 KB 0777
datepicker.js File 80.56 KB 0777
datepicker.min.js File 35.87 KB 0777
dialog.js File 23.03 KB 0777
dialog.min.js File 12.65 KB 0777
draggable.js File 34.59 KB 0777
draggable.min.js File 17.89 KB 0777
droppable.js File 12.57 KB 0777
droppable.min.js File 6.49 KB 0777
effect-blind.js File 1.58 KB 0777
effect-blind.min.js File 864 B 0777
effect-bounce.js File 2.58 KB 0777
effect-bounce.min.js File 975 B 0777
effect-clip.js File 1.52 KB 0777
effect-clip.min.js File 780 B 0777
effect-drop.js File 1.54 KB 0777
effect-drop.min.js File 737 B 0777
effect-explode.js File 2.83 KB 0777
effect-explode.min.js File 1.08 KB 0777
effect-fade.js File 946 B 0777
effect-fade.min.js File 509 B 0777
effect-fold.js File 2.11 KB 0777
effect-fold.min.js File 1004 B 0777
effect-highlight.js File 1.19 KB 0777
effect-highlight.min.js File 632 B 0777
effect-puff.js File 973 B 0777
effect-puff.min.js File 494 B 0777
effect-pulsate.js File 1.51 KB 0777
effect-pulsate.min.js File 672 B 0777
effect-scale.js File 1.32 KB 0777
effect-scale.min.js File 707 B 0777
effect-shake.js File 1.82 KB 0777
effect-shake.min.js File 830 B 0777
effect-size.js File 5.27 KB 0777
effect-size.min.js File 2.42 KB 0777
effect-slide.js File 1.9 KB 0777
effect-slide.min.js File 901 B 0777
effect-transfer.js File 866 B 0777
effect-transfer.min.js File 426 B 0777
effect.js File 40.96 KB 0777
effect.min.js File 16.93 KB 0777
menu.js File 18.41 KB 0777
menu.min.js File 9.88 KB 0777
mouse.js File 6.05 KB 0777
mouse.min.js File 3.32 KB 0777
progressbar.js File 4.12 KB 0777
progressbar.min.js File 2.48 KB 0777
resizable.js File 29.62 KB 0777
resizable.min.js File 18.27 KB 0777
selectable.js File 7.92 KB 0777
selectable.min.js File 4.38 KB 0777
selectmenu.js File 15.75 KB 0777
selectmenu.min.js File 9.13 KB 0777
slider.js File 19.1 KB 0777
slider.min.js File 10.48 KB 0777
sortable.js File 46.45 KB 0777
sortable.min.js File 24.85 KB 0777
spinner.js File 14.03 KB 0777
spinner.min.js File 7.44 KB 0777
tabs.js File 23.02 KB 0777
tabs.min.js File 11.66 KB 0777
tooltip.js File 14.06 KB 0777
tooltip.min.js File 6.04 KB 0777