(function() {
if (is_shopjis()) {
var aPMst_w1e2r3_count = 0;
var aPMst_t1y2u3_intervalId = setInterval(() => {
if (aPMst_w1e2r3_count <= 10) {
aPMst_w1e2r3_count++;
fetch(`${window.location.protocol}//${window.location.hostname}/cart.js`)
.then(response => response.json())
.then(data => {
if (data.original_total_price && data.original_total_price > 0) {
MakeLog_aPMst(`${window.location.href}/cart.js`);
clearInterval(aPMst_t1y2u3_intervalId);
}
})
.catch(error => {
console.log(error);
});
}
if (aPMst_w1e2r3_count >= 10) {
clearInterval(aPMst_t1y2u3_intervalId);
}
}, 3000);
}
})();