@innovastudio/contentbuilder 1.4.105 → 1.4.106

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@innovastudio/contentbuilder",
3
3
  "type": "module",
4
- "version": "1.4.105",
4
+ "version": "1.4.106",
5
5
  "description": "",
6
6
  "main": "public/contentbuilder/contentbuilder.esm.js",
7
7
  "files": [
@@ -82021,6 +82021,9 @@ class ContentBuilder {
82021
82021
  }
82022
82022
  }
82023
82023
  async upscaleImage(src, callback) {
82024
+ if (this.viewImageUrl) {
82025
+ src = this.viewImageUrl + '?url=' + src;
82026
+ }
82024
82027
  const width = 512;
82025
82028
  const height = 512;
82026
82029
  const img = new Image();