Advertisement
Guest User

Untitled

a guest
Jan 16th, 2020
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. const more_swatches = 2;
  2.  
  3. var __isp_options = {
  4.     isp_serp_callback: function () {
  5.         $jquery_isp(".isp_grid_product").each(function () {
  6.              $jquery_isp(this).find('.isp_product_color_swatch_pop_up span').each(function (index) {
  7.                  if ($jquery_isp(this).parents(".isp_product_color_swatch_pop_up").find(".moved").length === more_swatches) {
  8.                      return false; //stop loop
  9.                      }
  10.                  $jquery_isp(this).addClass("moved");
  11.                  $(this).parents(".isp_product_color_swatch").find(".extra_swatch_text").before($jquery_isp(this));
  12.              });
  13.         });
  14.     }
  15. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement