nodebb-plugin-ezoic-infinite 1.4.12 → 1.4.13

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/public/client.js +13 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nodebb-plugin-ezoic-infinite",
3
- "version": "1.4.12",
3
+ "version": "1.4.13",
4
4
  "description": "Production-ready Ezoic infinite ads integration for NodeBB 4.x",
5
5
  "main": "library.js",
6
6
  "license": "MIT",
package/public/client.js CHANGED
@@ -680,6 +680,19 @@
680
680
  }
681
681
 
682
682
  enforceNoAdjacentAds();
683
+
684
+ // Forcer Ezoic à recalculer le nombre de mots après insertion de nouveaux wrappers
685
+ // Nécessaire pour infinite scroll : Ezoic ne recalcule pas automatiquement
686
+ if (inserted > 0) {
687
+ try {
688
+ if (window.ezstandalone && typeof window.ezstandalone.refresh === 'function') {
689
+ window.ezstandalone.refresh();
690
+ } else if (window.ezstandalone && typeof window.ezstandalone.updateContent === 'function') {
691
+ window.ezstandalone.updateContent();
692
+ }
693
+ } catch (e) {}
694
+ }
695
+
683
696
  scheduleRefill(250);
684
697
 
685
698
  // If nothing inserted and list isn't in DOM yet (first click), retry a bit