HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux WebLive 5.15.0-79-generic #86-Ubuntu SMP Mon Jul 10 16:07:21 UTC 2023 x86_64
User: ubuntu (1000)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/html/wpyourdayfloraldesign/wp-content/themes/vamtam-fiore/vamtam/assets/js/low-priority.js
/* jshint esversion: 6 */

(function( v, undefined ) {
	'use strict';

	// scroll to top button
	{
		var st_buttons = document.querySelectorAll( '.vamtam-scroll-to-top' );

		if ( st_buttons.length ) {
			var side_st_button = document.getElementById( 'scroll-to-top' ),
				pageMiddle = window.innerHeight / 2;

			if ( side_st_button ) {
				v.addScrollHandler( {
					init: function() {},
					measure: function() {
						pageMiddle = window.innerHeight / 2;
					},
					mutate: function( cpos ) {
						if ( cpos > pageMiddle ) {
							side_st_button.style.opacity   = 1;
							side_st_button.style.transform = 'translate3d(0, 0, 0)';
						} else {
							side_st_button.style.opacity   = '';
							side_st_button.style.transform = 'translate3d(0, 100%, 0)';
						}
					}
				} );
			}

			document.addEventListener( 'click', ( e ) => {
				if ( e.target.closest( '.vamtam-scroll-to-top' ) ) {
					e.preventDefault();

					// iOS Safari uses a simple animation, normal browsers use scroll-behavior:smooth
					if ( /iPad|iPhone|iPod/.test( navigator.userAgent ) && ! window.MSStream ) {
						window.scrollTo( 0, 0 );
					} else {
						window.scroll( { left: 0, top: 0, behavior: 'smooth' } );
					}
				}
			}, true );
		}

		( function wpRocketLazyRenderSafeGuard() {
			window.addEventListener( 'load', function() {
				document.querySelectorAll('[data-wpr-lazyrender]').forEach(el => delete el.dataset.wprLazyrender);
			} );
		} )();
	}
})( window.VAMTAM );