| Server IP : 38.190.208.107 / Your IP : 216.73.216.74 Web Server : nginx/1.28.1 System : Linux ht2026040333114 6.1.0-10-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.37-1 (2023-07-03) x86_64 User : root ( 0) PHP Version : 8.2.28 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,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_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv,eval,assert,passthru,system,exec,shell_exec,popen,proc_open MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /www/wwwroot/wp.9/wp-content/themes/woodmart/js/scripts/elements/ |
Upload File : |
/* global woodmart_settings */
(function($) {
woodmartThemeModule.$document.on('wdHeaderBuilderInited', function () {
woodmartThemeModule.stickyColumns();
});
$.each([
'frontend/element_ready/container',
'frontend/element_ready/wd_sticky_columns.default'
], function(index, value) {
woodmartThemeModule.wdElementorAddAction(value, function() {
woodmartThemeModule.stickyColumns();
});
});
woodmartThemeModule.stickyColumns = function() {
var $elements = $('.wd-sticky-columns[class*="wd-sticky-on-"]');
$elements.each(function() {
var $wrapper = $(this);
var $columnFirst = $wrapper.find('.wd-sticky-columns-inner > .wd-col:first-child > div');
var $columnSecond = $wrapper.find('.wd-sticky-columns-inner > .wd-col:last-child > div');
var classes = $wrapper.attr('class').split(' ');
var offset = 150;
for (var index = 0; index < classes.length; index++) {
if (classes[index].indexOf('wd_sticky_offset_') >= 0) {
var data = classes[index].split('_');
offset = parseInt(data[3]);
}
}
var diff = $columnFirst.outerHeight() - $columnSecond.outerHeight();
if (diff < -100) {
stickyInit($columnFirst, offset);
} else if (diff > 100) {
stickyInit($columnSecond, offset);
}
woodmartThemeModule.$window.on('resize', woodmartThemeModule.debounce(function() {
var diff = $columnFirst.outerHeight() - $columnSecond.outerHeight();
if (diff < -100) {
stickyInit($columnFirst, offset);
} else if (diff > 100) {
stickyInit($columnSecond, offset);
}
}, 300));
});
function stickyInit($column, offset) {
var windowWidth = woodmartThemeModule.$window.width();
var $wrapper = $column.closest('.wd-sticky-columns');
$column.trigger('sticky_kit:detach');
$column.siblings().trigger('sticky_kit:detach');
if ( ( ! $wrapper.hasClass('wd-sticky-on-lg') && windowWidth > 1024 ) || ( ! $wrapper.hasClass('wd-sticky-on-md-sm') && windowWidth <= 1024 && windowWidth > 768 ) || ( ! $wrapper.hasClass('wd-sticky-on-sm') && windowWidth <= 768 ) ) {
return;
}
$column.stick_in_parent({
offset_top: offset
});
}
};
$(document).ready(function() {
woodmartThemeModule.stickyColumns();
});
})(jQuery);