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.
- package/package.json +1 -1
- package/public/client.js +13 -0
package/package.json
CHANGED
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
|