@betarena/ad-engine 0.0.43 → 0.0.45

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.43",
3
+ "version": "0.0.45",
4
4
  "private": false,
5
5
  "description": "Betarena ad-engine widget",
6
6
  "keywords": [
@@ -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
  }
@@ -8,6 +8,8 @@ export const
8
8
  * "http://192.168.1.236:58749"
9
9
  * ➤ dev|:|live|:|staging
10
10
  * "https://betarena-test-e2748dab12f5.herokuapp.com"
11
+ * ➤ prod|:|live
12
+ * "http://49.13.201.19:8500"
11
13
  */
12
- betarenaEndpoint = 'https://betarena-test-e2748dab12f5.herokuapp.com'
14
+ betarenaEndpoint = 'http://49.13.201.19:8500'
13
15
  ;