AnonSec Shell
Server IP : 54.36.91.62  /  Your IP : 216.73.217.112
Web Server : Apache
System : Linux webm013.cluster127.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
User : coopiak ( 151928)
PHP Version : 8.3.23
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/coopiak/amisdesseniors-fr/nimes/components/com_comprofiler/js/jquery/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME ]     

Current File : /home/coopiak/amisdesseniors-fr/nimes/components/com_comprofiler/js/jquery/jquery.cbscroller.js
(function($) {
	var instances = [];
	var methods = {
		init: function( options ) {
			return this.each( function () {
				var $this = this;
				var cbscroller = $( $this ).data( 'cbscroller' );

				if ( cbscroller ) {
					return; // cbscroller is already bound; so no need to rebind below
				}

				cbscroller = {};
				cbscroller.options = ( typeof options != 'undefined' ? options : {} );
				cbscroller.defaults = $.fn.cbscroller.defaults;
				cbscroller.settings = $.extend( true, {}, cbscroller.defaults, cbscroller.options );
				cbscroller.element = $( $this );

				if ( cbscroller.settings.useData ) {
					$.each( $.fn.cbscroller.dataMap, function( key, value ) {
						const dataValue = cbscroller.element.data( value );

						if ( typeof dataValue != 'undefined' ) {
							cbscroller.settings[key] = dataValue;
						}
					});
				}

				cbscroller.element.triggerHandler( 'cbscroller.init.before', [cbscroller] );

				if ( ! cbscroller.settings.init ) {
					return;
				}

				cbscroller.resizeHandler = function() {
					updateScroller.call( $this, cbscroller );
				};

				$( window ).on( 'resize', cbscroller.resizeHandler );

				if ( cbscroller.settings.width ) {
					cbscroller.leftHandler = function( e ) {
						e.preventDefault();

						scrollToTarget.call( $this, 'left', cbscroller );
					};

					cbscroller.rightHandler = function( e ) {
						e.preventDefault();

						scrollToTarget.call( $this, 'right', cbscroller );
					};

					cbscroller.element.children( '.cbScrollerLeft' ).on( 'click', cbscroller.leftHandler );
					cbscroller.element.children( '.cbScrollerRight' ).on( 'click', cbscroller.rightHandler );
				}

				if ( cbscroller.settings.height ) {
					cbscroller.upHandler = function( e ) {
						e.preventDefault();

						scrollToTarget.call( $this, 'up', cbscroller );
					};

					cbscroller.downHandler = function( e ) {
						e.preventDefault();

						scrollToTarget.call( $this, 'down', cbscroller );
					};

					cbscroller.element.children( '.cbScrollerUp' ).on( 'click', cbscroller.upHandler );
					cbscroller.element.children( '.cbScrollerDown' ).on( 'click', cbscroller.downHandler );
				}

				updateScroller.call( $this, cbscroller );

				// Destroy the cbscroller element:
				cbscroller.element.on( 'remove.cbscroller destroy.cbscroller', function() {
					cbscroller.element.cbscroller( 'destroy' );
				});

				// Rebind the cbscroller element to pick up any data attribute modifications:
				cbscroller.element.on( 'rebind.cbscroller', function() {
					cbscroller.element.cbscroller( 'rebind' );
				});

				// If the cbscroller element is modified we need to rebuild it to ensure all our bindings are still ok:
				cbscroller.element.on( 'modified.cbscroller', function( e, oldId, newId, index ) {
					if ( oldId != newId ) {
						cbscroller.element.cbscroller( 'rebind' );
					}
				});

				// If the cbscroller is cloned we need to rebind it back:
				cbscroller.element.on( 'cloned.cbscroller', function() {
					$( this ).off( '.cbscroller' );
					$( this ).removeData( 'cbscroller' );

					if ( cbscroller.settings.width ) {
						$( this ).children( '.cbScrollerLeft' ).off( 'click', cbscroller.leftHandler ).addClass( 'hidden' );
						$( this ).children( '.cbScrollerRight' ).off( 'click', cbscroller.rightHandler ).addClass( 'hidden' );
					}

					if ( cbscroller.settings.height ) {
						$( this ).children( '.cbScrollerUp' ).off( 'click', cbscroller.upHandler ).addClass( 'hidden' );
						$( this ).children( '.cbScrollerDown' ).off( 'click', cbscroller.downHandler ).addClass( 'hidden' );
					}

					$( this ).removeClass( 'cbScrollerWidth cbScrollerHeight' );
					$( this ).cbscroller( cbscroller.options );
				});

				cbscroller.element.triggerHandler( 'cbscroller.init.after', [cbscroller] );

				// Bind the cbscroller to the element so it's reusable and chainable:
				cbscroller.element.data( 'cbscroller', cbscroller );

				// Add this instance to our instance array so we can keep track of our cbscroller instances:
				instances.push( cbscroller );
			});
		},
		update: function() {
			var cbscroller = $( this ).data( 'cbscroller' );

			if ( ! cbscroller ) {
				return this;
			}

			updateScroller.call( this, cbscroller );

			return this;
		},
		left: function() {
			var cbscroller = $( this ).data( 'cbscroller' );

			if ( ( ! cbscroller ) || ( ! cbscroller.settings.width ) ) {
				return this;
			}

			scrollToTarget.call( this, 'left', cbscroller );

			return this;
		},
		right: function() {
			var cbscroller = $( this ).data( 'cbscroller' );

			if ( ( ! cbscroller ) || ( ! cbscroller.settings.width ) ) {
				return this;
			}

			scrollToTarget.call( this, 'right', cbscroller );

			return this;
		},
		up: function() {
			var cbscroller = $( this ).data( 'cbscroller' );

			if ( ( ! cbscroller ) || ( ! cbscroller.settings.height ) ) {
				return this;
			}

			scrollToTarget.call( this, 'up', cbscroller );

			return this;
		},
		down: function() {
			var cbscroller = $( this ).data( 'cbscroller' );

			if ( ( ! cbscroller ) || ( ! cbscroller.settings.height ) ) {
				return this;
			}

			scrollToTarget.call( this, 'down', cbscroller );

			return this;
		},
		rebind: function() {
			var cbscroller = $( this ).data( 'cbscroller' );

			if ( ! cbscroller ) {
				return this;
			}

			cbscroller.element.cbscroller( 'destroy' );
			cbscroller.element.cbscroller( cbscroller.options );

			return this;
		},
		destroy: function() {
			var cbscroller = $( this ).data( 'cbscroller' );

			if ( ! cbscroller ) {
				return this;
			}

			cbscroller.element.off( '.cbscroller' );

			$( window ).off( 'resize', cbscroller.resizeHandler );

			if ( cbscroller.settings.width ) {
				cbscroller.element.children( '.cbScrollerLeft' ).off( 'click', cbscroller.leftHandler ).addClass( 'hidden' );
				cbscroller.element.children( '.cbScrollerRight' ).off( 'click', cbscroller.rightHandler ).addClass( 'hidden' );
			}

			if ( cbscroller.settings.height ) {
				cbscroller.element.children( '.cbScrollerUp' ).off( 'click', cbscroller.upHandler ).addClass( 'hidden' );
				cbscroller.element.children( '.cbScrollerDown' ).off( 'click', cbscroller.downHandler ).addClass( 'hidden' );
			}

			cbscroller.element.removeClass( 'cbScrollerWidth cbScrollerHeight' );
			cbscroller.element.removeData( 'cbscroller' );
			cbscroller.element.triggerHandler( 'cbscroller.destroyed', [cbscroller] );

			return this;
		},
		instances: function() {
			return instances;
		}
	};

	function updateScroller( cbscroller ) {
		cbscroller.element.removeClass( 'cbScrollerWidth cbScrollerHeight' );

		var content = cbscroller.element.children( '.cbScrollerContent' );

		var width = 0;
		var height = 0;

		var items = content.children();

		if ( cbscroller.settings.elements ) {
			items = items.find( cbscroller.settings.elements );
		}

		if ( cbscroller.settings.ignore ) {
			items = items.not( cbscroller.settings.ignore );
		}

		items.each( function() {
			width += $( this ).width();
			height += $( this ).height();
		});

		if ( cbscroller.settings.width ) {
			var left = cbscroller.element.children( '.cbScrollerLeft' ).addClass( 'hidden' );
			var right = cbscroller.element.children( '.cbScrollerRight' ).addClass( 'hidden' );

			if ( width > content.width() ) {
				cbscroller.element.addClass( 'cbScrollerWidth' );
				left.removeClass( 'hidden' );
				right.removeClass( 'hidden' );
			}
		}

		if ( cbscroller.settings.height ) {
			var up = cbscroller.element.children( '.cbScrollerUp' ).addClass( 'hidden' );
			var down = cbscroller.element.children( '.cbScrollerDown' ).addClass( 'hidden' );

			if ( height > content.height() ) {
				cbscroller.element.addClass( 'cbScrollerHeight' );
				up.removeClass( 'hidden' );
				down.removeClass( 'hidden' );
			}
		}
	}

	function scrollToTarget( direction, cbscroller ) {
		if ( ( ( direction == 'left' ) || ( direction == 'right' ) ) && ( ! cbscroller.settings.width ) ) {
			return;
		} else if ( ( ( direction == 'up' ) || ( direction == 'down' ) ) && ( ! cbscroller.settings.height ) ) {
			return;
		}

		var content = cbscroller.element.children( '.cbScrollerContent' );

		var width = 0;
		var height = 0;
		var target = null;

		var items = content.children();

		if ( cbscroller.settings.elements ) {
			items = items.find( cbscroller.settings.elements );
		}

		if ( cbscroller.settings.ignore ) {
			items = items.not( cbscroller.settings.ignore );
		}

		items.each( function() {
			width += $( this ).width();
			height += $( this ).height();
		});

		items.each( function() {
			switch ( direction ) {
				case 'left':
					if ( $( this ).offset().left < content.offset().left ) {
						target = $( this );
					}
					break;
				case 'right':
					if ( ( $( this ).offset().left + $( this ).width() ) > ( content.offset().left + content.width() ) ) {
						target = $( this );
						return false;
					}
					break;
				case 'up':
					if ( $( this ).offset().top < content.offset().top ) {
						target = $( this );
					}
					break;
				case 'down':
					if ( ( $( this ).offset().top + $( this ).height() ) > ( content.offset().top + content.height() ) ) {
						target = $( this );
						return false;
					}
					break;
			}
		});

		if ( ( direction == 'left' ) || ( direction == 'right' ) ) {
			if ( target ) {
				content.scrollTo( target, 'fast', { axis: 'x', easing: 'linear' } );
			} else {
				if ( cbscroller.settings.loop ) {
					var loopWidth = width;

					if ( direction == 'right' ) {
						loopWidth = 0;
					}

					content.scrollTo( loopWidth, 0, { axis: 'x', easing: 'linear' } );
				} else {
					var scrollWidth = 0;

					if ( direction == 'right' ) {
						scrollWidth = width;
					}

					content.scrollTo( scrollWidth, 'fast', { axis: 'x', easing: 'linear' } );
				}
			}
		} else if ( ( direction == 'up' ) || ( direction == 'down' ) ) {
			if ( target ) {
				content.scrollTo( target, 'fast', { axis: 'y', easing: 'linear' } );
			} else {
				if ( cbscroller.settings.loop ) {
					var loopHeight = height;

					if ( direction == 'down' ) {
						loopHeight = 0;
					}

					content.scrollTo( loopHeight, 0, { axis: 'x', easing: 'linear' } );
				} else {
					var scrollHeight = 0;

					if ( direction == 'down' ) {
						scrollHeight = height;
					}

					content.scrollTo( scrollHeight, 'fast', { axis: 'y', easing: 'linear' } );
				}
			}
		}
	}

	$.fn.cbscroller = function( options ) {
		if ( methods[options] ) {
			return methods[ options ].apply( this, Array.prototype.slice.call( arguments, 1 ) );
		} else if ( ( typeof options === 'object' ) || ( ! options ) ) {
			return methods.init.apply( this, arguments );
		}

		return this;
	};

	$.fn.cbscroller.dataMap = {
		elements: 'cbscroller-elements',
		ignore: 'cbscroller-ignore',
		width: 'cbscroller-width',
		height: 'cbscroller-height',
		loop: 'cbscroller-loop'
	};

	$.fn.cbscroller.defaults = {
		init: true,
		useData: true,
		elements: null,
		ignore: null,
		width: true,
		height: true,
		loop: false
	};
})(jQuery);

Anon7 - 2022
AnonSec Team