buzzcasting-storage 1.0.9 → 1.0.10
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.
|
@@ -3115,11 +3115,13 @@ class cs {
|
|
|
3115
3115
|
k(this, "options");
|
|
3116
3116
|
k(this, "setCloud", async (e, n) => {
|
|
3117
3117
|
const r = B(e);
|
|
3118
|
-
window.BuzzCasting.WidgetData[r] = n
|
|
3118
|
+
window.BuzzCasting.WidgetData[r] = n, await new Promise((s, i) => s(() => {
|
|
3119
|
+
window.BuzzCasting.WidgetData[r] = n;
|
|
3120
|
+
}));
|
|
3119
3121
|
});
|
|
3120
3122
|
k(this, "getCloud", async (e) => {
|
|
3121
3123
|
const n = B(e);
|
|
3122
|
-
return await window.
|
|
3124
|
+
return await new Promise((r, s) => r(window.BuzzCasting.WidgetData[n]));
|
|
3123
3125
|
});
|
|
3124
3126
|
k(this, "setSeries", async (e, n) => {
|
|
3125
3127
|
const r = B(e);
|