Advertisement
Guest User

Untitled

a guest
Dec 10th, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. var priceWidths = document.querySelectorAll(".flex-left");
  2. for (var i = 0; i < priceWidths.length; i++) {
  3.     if (typeof priceWidths[i].querySelectorAll(".first-price .big")[0] !== "undefined") {
  4.         var priceWidth = priceWidths[i].querySelectorAll(".first-price .small-price")[0].offsetWidth;
  5.     }
  6.     var popupIcon = priceWidths[i].querySelectorAll(".slider-ln-popup")[0];
  7.     if (typeof popupIcon !== "undefined") {
  8.         popupIcon.style.width = "20px";
  9.         popupIcon.style.right = 0;
  10.         popupIcon.style.transform = "translate(-" + (priceWidth - 20) + "px, 15px)";
  11.     }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement