/var/www/vhosts/nabawater/vendor/bower-asset/jquery-ui/ui
NameSizeModeActions
effects/-0755rm
i18n/-0755rm
minified/-0755rm
widgets/-0755rm
.jshintrc3360644editdlrm
core.js3410644editdlrm
data.js9030644editdlrm
disable-selection.js10500644editdlrm
effect.js407920644editdlrm
escape-selector.js4750644editdlrm
focusable.js22640644editdlrm
form-reset-mixin.js17960644editdlrm
form.js5510644editdlrm
ie.js3560644editdlrm
jquery-1-7.js25230644editdlrm
keycode.js7900644editdlrm
labels.js17120644editdlrm
plugin.js9910644editdlrm
position.js148760644editdlrm
safe-active-element.js9840644editdlrm
safe-blur.js4930644editdlrm
scroll-parent.js12510644editdlrm
tabbable.js8530644editdlrm
unique-id.js9470644editdlrm
version.js2930644editdlrm
widget.js197480644editdlrm
Edit: /var/www/vhosts/nabawater/vendor/bower-asset/jquery-ui/ui/scroll-parent.js (1251B)
/*! * jQuery UI Scroll Parent 1.12.1 * http://jqueryui.com * * Copyright jQuery Foundation and other contributors * Released under the MIT license. * http://jquery.org/license */ //>>label: scrollParent //>>group: Core //>>description: Get the closest ancestor element that is scrollable. //>>docs: http://api.jqueryui.com/scrollParent/ ( function( factory ) { if ( typeof define === "function" && define.amd ) { // AMD. Register as an anonymous module. define( [ "jquery", "./version" ], factory ); } else { // Browser globals factory( jQuery ); } } ( function( $ ) { return $.fn.scrollParent = function( includeHidden ) { var position = this.css( "position" ), excludeStaticParent = position === "absolute", overflowRegex = includeHidden ? /(auto|scroll|hidden)/ : /(auto|scroll)/, scrollParent = this.parents().filter( function() { var parent = $( this ); if ( excludeStaticParent && parent.css( "position" ) === "static" ) { return false; } return overflowRegex.test( parent.css( "overflow" ) + parent.css( "overflow-y" ) + parent.css( "overflow-x" ) ); } ).eq( 0 ); return position === "fixed" || !scrollParent.length ? $( this[ 0 ].ownerDocument || document ) : scrollParent; }; } ) );