|
Server : LiteSpeed System : Linux srv104790275 5.15.0-161-generic #171-Ubuntu SMP Sat Oct 11 08:17:01 UTC 2025 x86_64 User : dewac4139 ( 1077) PHP Version : 8.0.30 Disable Function : 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, Directory : /home/dewa95.com/public_html/wp-content/plugins/ugpoh/freemius/assets/js/ |
Upload File : |
(function ($, undef) {
var global = this;
// Namespace.
global.FS = global.FS || {};
global.FS.PostMessage = function ()
{
var
_is_child = false,
_postman = new NoJQueryPostMessageMixin('postMessage', 'receiveMessage'),
_callbacks = {},
_base_url,
_parent_url = decodeURIComponent(document.location.hash.replace(/^#/, '')),
_parent_subdomain = _parent_url.substring(0, _parent_url.indexOf('/', ('https://' === _parent_url.substring(0, ('https://').length)) ? 8 : 7)),
_init = function () {
_postman.receiveMessage(function (e) {
var data = JSON.parse(e.data);
if (_callbacks[data.type]) {
for (var i = 0; i < _callbacks[data.type].length; i++) {
// Execute type callbacks.
_callbacks[data.type][i](data.data);
}
}
}, _base_url);
},
_hasParent = ('' !== _parent_url),
$window = $(window),
$html = $('html');
return {
init : function (url, iframes)
{
_base_url = url;
_init();
// Automatically receive forward messages.
FS.PostMessage.receiveOnce('forward', function (data){
window.location = data.url;
});
iframes = iframes || [];
if (iframes.length > 0) {
$window.on('scroll', function () {
for (var i = 0; i < iframes.length; i++) {
FS.PostMessage.postScroll(iframes[i]);
}
});
}
},
init_child : function ()
{
this.init(_parent_subdomain);
_is_child = true;
// Post height of a child right after window is loaded.
$(window).bind('load', function () {
FS.PostMessage.postHeight();
// Post message that window was loaded.
FS.PostMessage.post('loaded');
});
},
hasParent : function ()
{
return _hasParent;
},
postHeight : function (diff, wrapper) {
diff = diff || 0;
wrapper = wrapper || '#wrap_section';
this.post('height', {
height: diff + $(wrapper).outerHeight(true)
});
},
postScroll : function (iframe) {
this.post('scroll', {
top: $window.scrollTop(),
height: ($window.height() - parseFloat($html.css('paddingTop')) - parseFloat($html.css('marginTop')))
}, iframe);
},
post : function (type, data, iframe)
{
console.debug('PostMessage.post', type);
if (iframe)
{
// Post to iframe.
_postman.postMessage(JSON.stringify({
type: type,
data: data
}), iframe.src, iframe.contentWindow);
}
else {
// Post to parent.
_postman.postMessage(JSON.stringify({
type: type,
data: data
}), _parent_url, window.parent);
}
},
receive: function (type, callback)
{
console.debug('PostMessage.receive', type);
if (undef === _callbacks[type])
_callbacks[type] = [];
_callbacks[type].push(callback);
},
receiveOnce: function (type, callback)
{
if (this.is_set(type))
return;
this.receive(type, callback);
},
// Check if any callbacks assigned to a specified message type.
is_set: function (type)
{
return (undef != _callbacks[type]);
},
parent_url: function ()
{
return _parent_url;
},
parent_subdomain: function ()
{
return _parent_subdomain;
}
};
}();
})(jQuery);