Advertisement
NikolayBezay

Carpetshop embed for Cleaning Form page.

Nov 15th, 2022
1,021
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.62 KB | None | 0 0
  1. <script>
  2. (function() {
  3.     var WAITING_TIMER_COUNTER = 60;
  4.     var HALF_OF_THE_SECOND = 500;
  5.  
  6.     function waitPageSelector() {
  7.  
  8.         WAITING_TIMER_COUNTER--;
  9.         var nativePageSelector = document.querySelector('[id*="shopify-section-template"] .main-content .heading > p:nth-child(2)');
  10.        
  11.         if ((!nativePageSelector && WAITING_TIMER_COUNTER > 0) || !window.adoric) {
  12.                setTimeout(waitPageSelector, HALF_OF_THE_SECOND);
  13.             } else if (window.adoric) {
  14.                 window.adoric.trigger('showAdoricCleaningForm');
  15.             }
  16.     }
  17.     waitPageSelector();
  18. })();
  19. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement