@betarena/ad-engine 0.0.56 → 0.0.58

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@betarena/ad-engine",
3
- "version": "0.0.56",
3
+ "version": "0.0.58",
4
4
  "private": false,
5
5
  "description": "Betarena ad-engine widget",
6
6
  "keywords": [
@@ -449,6 +449,9 @@
449
449
  // │ |: Loop over creative data and inject adverts
450
450
  // ╰─────
451
451
  for (const adData of creativeAdData)
452
+ {
453
+ if (zoneId != 1) continue;
454
+
452
455
  new WidgetAdvertSlide
453
456
  (
454
457
  {
@@ -459,7 +462,7 @@
459
462
  }
460
463
  }
461
464
  );
462
- ;
465
+ }
463
466
  }
464
467
 
465
468
  // ╭─────
@@ -526,6 +529,9 @@
526
529
  // │ |: Loop over creative data and inject adverts
527
530
  // ╰─────
528
531
  for (const adData of creativeAdData)
532
+ {
533
+ if (zoneId != 1) continue;
534
+
529
535
  new WidgetAdvertSlide
530
536
  (
531
537
  {
@@ -536,7 +542,7 @@
536
542
  }
537
543
  }
538
544
  );
539
- ;
545
+ }
540
546
  }
541
547
  }
542
548
  // ╭─────
@@ -246,7 +246,7 @@
246
246
  <div
247
247
  id="intscdiv"
248
248
  class="interscroller-bg-wrapper"
249
- style="height: 100%; right: 0px; clip: rect(0px 100vw 100vh 0px); width: 100vw;"
249
+ style="height: 100%; right: 0px; clip-path: rect(0px 100vw 100vh 0px); width: 100vw;"
250
250
  >
251
251
  <div
252
252
  id="nxtads"
File without changes