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/themify/js/modules/sharer.js
/**
 * sharer module
 */
;
(function ($, Themify, document, window) {
    'use strict';
    Themify.on('tf_sharer_init', function (type, url, title) {
        if (!title) {
            title = '';
        } else {
            // Strip HTML
            const tmp = document.createElement('div');
            tmp.innerHTML = title;
            title = tmp.textContent || tmp.innerText || '';
            title = title.trim();
        }
        const width = 550,
            height = 300,
            leftPosition = (window.screen.width / 2) - ((width / 2) + 10),
            topPosition = (window.screen.height / 2) - ((height / 2) + 50),
            features = 'status=no,height=' + height + ',width=' + width + ',resizable=yes,left=' + leftPosition + ',top=' + topPosition + ',screenX=#{left},screenY=#{top},toolbar=no,menubar=no,scrollbars=no,location=no,directories=no';
        if ('facebook' === type) {
            url = 'https://www.facebook.com/sharer.php?u=' + url;
        } else if ('twitter' === type) {
            url = 'http://twitter.com/share?url=' + url + '&text=' + title;
        } else if ('linkedin' === type) {
            url = 'https://www.linkedin.com/shareArticle?mini=true&url=' + url;
        } else if ('pinterest' === type) {
            url = '//pinterest.com/pin/create/button/?url=' + url + '&description=' + title;
        } else if ('email' === type) {
            title=''===title?document.getElementsByTagName('title')[0].textContent:title;
            url = 'mailto:?subject=' + (title === '' ? themify_vars.emailSub : title) + '&body=' + url;
        }
        const win = window.open(encodeURI(url), 'sharer', features);
        win.moveTo(leftPosition, topPosition);
    });
})(jQuery, Themify, document, window);