/var/www/vhosts/ihelp.ro/ajutam.ro/wp-includes/js/jquery/ui
NameSizeModeActions
accordion.js161380644editdlrm
accordion.min.js88600644editdlrm
autocomplete.js175300644editdlrm
autocomplete.min.js85360644editdlrm
button.js117060644editdlrm
button.min.js61540644editdlrm
checkboxradio.js75890644editdlrm
checkboxradio.min.js43480644editdlrm
controlgroup.js86260644editdlrm
controlgroup.min.js44020644editdlrm
core.js498880644editdlrm
core.min.js214640644editdlrm
datepicker.js825230644editdlrm
datepicker.min.js367480644editdlrm
dialog.js238960644editdlrm
dialog.min.js130980644editdlrm
draggable.js355460644editdlrm
draggable.min.js184200644editdlrm
droppable.js128990644editdlrm
droppable.min.js66650644editdlrm
effect-blind.js16440644editdlrm
effect-blind.min.js8800644editdlrm
effect-bounce.js26600644editdlrm
effect-bounce.min.js9910644editdlrm
effect-clip.js15770644editdlrm
effect-clip.min.js7960644editdlrm
effect-drop.js15950644editdlrm
effect-drop.min.js7530644editdlrm
effect-explode.js29240644editdlrm
effect-explode.min.js11220644editdlrm
effect-fade.js9680644editdlrm
effect-fade.min.js5250644editdlrm
effect-fold.js21850644editdlrm
effect-fold.min.js10200644editdlrm
effect-highlight.js12430644editdlrm
effect-highlight.min.js6480644editdlrm
effect-puff.js9950644editdlrm
effect-puff.min.js5100644editdlrm
effect-pulsate.js15670644editdlrm
effect-pulsate.min.js6880644editdlrm
effect-scale.js13730644editdlrm
effect-scale.min.js7230644editdlrm
effect-shake.js18840644editdlrm
effect-shake.min.js8460644editdlrm
effect-size.js54180644editdlrm
effect-size.min.js24910644editdlrm
effect-slide.js19670644editdlrm
effect-slide.min.js9170644editdlrm
effect-transfer.js8880644editdlrm
effect-transfer.min.js4420644editdlrm
effect.js246130644editdlrm
effect.min.js103320644editdlrm
menu.js189600644editdlrm
menu.min.js101990644editdlrm
mouse.js62270644editdlrm
mouse.min.js34280644editdlrm
progressbar.js42390644editdlrm
progressbar.min.js25580644editdlrm
resizable.js304900644editdlrm
resizable.min.js188240644editdlrm
selectable.js81290644editdlrm
selectable.min.js45060644editdlrm
selectmenu.js163460644editdlrm
selectmenu.min.js95020644editdlrm
slider.js195990644editdlrm
slider.min.js107590644editdlrm
sortable.js476410644editdlrm
sortable.min.js255040644editdlrm
spinner.js144340644editdlrm
spinner.min.js76760644editdlrm
tabs.js236640644editdlrm
tabs.min.js120080644editdlrm
tooltip.js144760644editdlrm
tooltip.min.js62440644editdlrm
Edit: /var/www/vhosts/ihelp.ro/ajutam.ro/wp-includes/js/jquery/ui/autocomplete.js (17530B)
/*! * jQuery UI Autocomplete 1.13.3 * https://jqueryui.com * * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * https://jquery.org/license */ //>>label: Autocomplete //>>group: Widgets //>>description: Lists suggested words as the user is typing. //>>docs: https://api.jqueryui.com/autocomplete/ //>>demos: https://jqueryui.com/autocomplete/ //>>css.structure: ../../themes/base/core.css //>>css.structure: ../../themes/base/autocomplete.css //>>css.theme: ../../themes/base/theme.css ( function( factory ) { "use strict"; if ( typeof define === "function" && define.amd ) { // AMD. Register as an anonymous module. define( [ "jquery", "./menu", "../keycode", "../position", "../safe-active-element", "../version", "../widget" ], factory ); } else { // Browser globals factory( jQuery ); } } )( function( $ ) { "use strict"; $.widget( "ui.autocomplete", { version: "1.13.3", defaultElement: "", options: { appendTo: null, autoFocus: false, delay: 300, minLength: 1, position: { my: "left top", at: "left bottom", collision: "none" }, source: null, // Callbacks change: null, close: null, focus: null, open: null, response: null, search: null, select: null }, requestIndex: 0, pending: 0, liveRegionTimer: null, _create: function() { // Some browsers only repeat keydown events, not keypress events, // so we use the suppressKeyPress flag to determine if we've already // handled the keydown event. #7269 // Unfortunately the code for & in keypress is the same as the up arrow, // so we use the suppressKeyPressRepeat flag to avoid handling keypress // events when we know the keydown event was used to modify the // search term. #7799 var suppressKeyPress, suppressKeyPressRepeat, suppressInput, nodeName = this.element[ 0 ].nodeName.toLowerCase(), isTextarea = nodeName === "textarea", isInput = nodeName === "input"; // Textareas are always multi-line // Inputs are always single-line, even if inside a contentEditable element // IE also treats inputs as contentEditable // All other element types are determined by whether or not they're contentEditable this.isMultiLine = isTextarea || !isInput && this._isContentEditable( this.element ); this.valueMethod = this.element[ isTextarea || isInput ? "val" : "text" ]; this.isNewMenu = true; this._addClass( "ui-autocomplete-input" ); this.element.attr( "autocomplete", "off" ); this._on( this.element, { keydown: function( event ) { if ( this.element.prop( "readOnly" ) ) { suppressKeyPress = true; suppressInput = true; suppressKeyPressRepeat = true; return; } suppressKeyPress = false; suppressInput = false; suppressKeyPressRepeat = false; var keyCode = $.ui.keyCode; switch ( event.keyCode ) { case keyCode.PAGE_UP: suppressKeyPress = true; this._move( "previousPage", event ); break; case keyCode.PAGE_DOWN: suppressKeyPress = true; this._move( "nextPage", event ); break; case keyCode.UP: suppressKeyPress = true; this._keyEvent( "previous", event ); break; case keyCode.DOWN: suppressKeyPress = true; this._keyEvent( "next", event ); break; case keyCode.ENTER: // when menu is open and has focus if ( this.menu.active ) { // #6055 - Opera still allows the keypress to occur // which causes forms to submit suppressKeyPress = true; event.preventDefault(); this.menu.select( event ); } break; case keyCode.TAB: if ( this.menu.active ) { this.menu.select( event ); } break; case keyCode.ESCAPE: if ( this.menu.element.is( ":visible" ) ) { if ( !this.isMultiLine ) { this._value( this.term ); } this.close( event ); // Different browsers have different default behavior for escape // Single press can mean undo or clear // Double press in IE means clear the whole form event.preventDefault(); } break; default: suppressKeyPressRepeat = true; // search timeout should be triggered before the input value is changed this._searchTimeout( event ); break; } }, keypress: function( event ) { if ( suppressKeyPress ) { suppressKeyPress = false; if ( !this.isMultiLine || this.menu.element.is( ":visible" ) ) { event.preventDefault(); } return; } if ( suppressKeyPressRepeat ) { return; } // Replicate some key handlers to allow them to repeat in Firefox and Opera var keyCode = $.ui.keyCode; switch ( event.keyCode ) { case keyCode.PAGE_UP: this._move( "previousPage", event ); break; case keyCode.PAGE_DOWN: this._move( "nextPage", event ); break; case keyCode.UP: this._keyEvent( "previous", event ); break; case keyCode.DOWN: this._keyEvent( "next", event ); break; } }, input: function( event ) { if ( suppressInput ) { suppressInput = false; event.preventDefault(); return; } this._searchTimeout( event ); }, focus: function() { this.selectedItem = null; this.previous = this._value(); }, blur: function( event ) { clearTimeout( this.searching ); this.close( event ); this._change( event ); } } ); this._initSource(); this.menu = $( "