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/wppartneramazingsecret/wp-content/themes/themify-ultra/js/modules/revealingFooter.js
/**
 * revealingFooter module
 */
;
(function ($, Themify, window) {
    'use strict';
        const $footer = $('#footerwrap'),
        backToTopButton = $('.back-top.back-top-float'),
        isSticky=$footer.css('position') === 'sticky',
        $footerInner = $footer.find('#footer'),
        $content = $('#body');
    let currentColor='#ffffff', 
        contentParents,
        footerHeight = $footer.innerHeight();
    const resizeCallback = function () {
            footerHeight = $footer.innerHeight();
            !isSticky && $footer.parent().css('padding-bottom', footerHeight);
        },
        scrollCallback = function () {
            const contentPosition = $content.get(0).getBoundingClientRect(),
                    footerVisibility = window.innerHeight - contentPosition.bottom;

            $footer.toggleClass('active-revealing', contentPosition.top < 0);

            if (footerVisibility >= 0 && footerVisibility <= footerHeight) {
                $footerInner.css('opacity', footerVisibility / footerHeight + 0.2);
            } else if (footerVisibility > footerHeight) {
                $footerInner.css('opacity', 1);
            }
        };

    if (!$content.length)
        return;

    // Check for content background
    contentParents = $content.parents();
    if (contentParents.length) {
        $content.add(contentParents).each(function () {
            var elColor = $(this).css('background-color');
            if (elColor && elColor !== 'transparent' && elColor !== 'rgba(0, 0, 0, 0)') {
                currentColor = elColor;
                return true;
            }
        });
    }
    $content.css('background-color', currentColor);
    // Sticky Check
    if(!isSticky){
        Themify.body[0].classList.add('no-css-sticky');
    }
    resizeCallback();
    scrollCallback();
    Themify.on('tfsmartresize',function(e){
        if(e){
            resizeCallback();
        }
    });
    $(window).on('scroll', scrollCallback);
    if (backToTopButton.length) {
        $('#footerwrap').before(backToTopButton);
    }
})(jQuery, Themify, window);