@betarena/ad-engine 0.0.43 → 0.0.44
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
|
@@ -139,6 +139,11 @@
|
|
|
139
139
|
{
|
|
140
140
|
isAdvertShown = true;
|
|
141
141
|
|
|
142
|
+
document.body.classList.add
|
|
143
|
+
(
|
|
144
|
+
'disable-scroll'
|
|
145
|
+
);
|
|
146
|
+
|
|
142
147
|
// ╭─────
|
|
143
148
|
// │ NOTE: |:| Advert timeout (close action) start
|
|
144
149
|
// ╰─────
|
|
@@ -218,6 +223,10 @@
|
|
|
218
223
|
['toggleAdShownState', undefined]
|
|
219
224
|
]
|
|
220
225
|
);
|
|
226
|
+
document.body.classList.remove
|
|
227
|
+
(
|
|
228
|
+
'disable-scroll'
|
|
229
|
+
);
|
|
221
230
|
return;
|
|
222
231
|
}
|
|
223
232
|
}
|