Contact us

Solve your dust problems for good

Learn more about our dust management platform and how you can use it in your operations in a short intro call.

Better decisions start with real-time insight

APT helps industrial teams move faster, act smarter, and stay compliant—because when you can see the problem clearly, you can solve it confidently.

// Function to adjust iframe height function adjustIframeHeight() { var iframe = $('iframe'); var iframeBody = iframe.contents().find('body'); var scrollHeight = iframeBody.prop('scrollHeight'); var iframeHeight = iframe.height(); // Adjust height if the difference is 20px or more if (Math.abs(scrollHeight - iframeHeight) >= 20) { iframe.height(scrollHeight); } } // Initial interval to adjust height until difference is less than 20px var initialInterval = setInterval(function() { adjustIframeHeight(); var iframe = $('iframe'); var iframeBody = iframe.contents().find('body'); var scrollHeight = iframeBody.prop('scrollHeight'); var iframeHeight = iframe.height(); if (Math.abs(scrollHeight - iframeHeight) < 20) { clearInterval(initialInterval); // Set up a periodic check every 200ms setInterval(function() { adjustIframeHeight(); }, 200); } }, 200);