@everymatrix/lottery-program-wof 1.29.4 → 1.29.6
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/CHANGELOG.md +1 -0
- package/dist/lottery-program-wof.js +2 -3
- package/dist/lottery-program-wof.js.map +1 -1
- package/package.json +2 -2
- package/src/widget.ts +2 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
| Version | Release date | Impacted areas | Changes |
|
|
5
5
|
| ------- | ------------ | ----------------------------- | --------------------------------------- |
|
|
6
|
+
| 1.29.5 | Tue Apr 23 2024 | lottery-program-wof | fix(FEW-302)(lottery-program-wof): fix styling url |
|
|
6
7
|
| 1.28.0 | Fri Mar 08 2024 | lottery-program-wof | fix(FEW-264)(casino-tournaments-x,lottery-program-wof,casino-wagering-x): add v1 to endpoint |
|
|
7
8
|
| 1.23.1 | Thu Jan 04 2024 | lottery-program-wof | feat(FEW-282)(lottery-program-wof): add timeout for draw api |
|
|
8
9
|
| 1.23.0 | Thu Dec 21 2023 | lottery-program-wof | feat(FEW-277)(lottery-program-wof): add condition to hide bonus |
|
|
@@ -5310,9 +5310,8 @@
|
|
|
5310
5310
|
container.appendChild(sheet);
|
|
5311
5311
|
};
|
|
5312
5312
|
const setClientStylingURL = async (clientstylingurl, callback) => {
|
|
5313
|
-
const
|
|
5314
|
-
|
|
5315
|
-
});
|
|
5313
|
+
const res = await fetch(clientstylingurl);
|
|
5314
|
+
const clientstyling = await res.text();
|
|
5316
5315
|
callback(clientstyling);
|
|
5317
5316
|
};
|
|
5318
5317
|
|