@innovastudio/contentbuilder 1.4.105 → 1.4.107
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
|
@@ -78983,6 +78983,7 @@ class ContentBuilder {
|
|
|
78983
78983
|
imageEmbed: true,
|
|
78984
78984
|
imageselect: '',
|
|
78985
78985
|
fileselect: '',
|
|
78986
|
+
videoselect: '',
|
|
78986
78987
|
imageSelect: '',
|
|
78987
78988
|
fileSelect: '',
|
|
78988
78989
|
videoSelect: '',
|
|
@@ -82021,6 +82022,9 @@ class ContentBuilder {
|
|
|
82021
82022
|
}
|
|
82022
82023
|
}
|
|
82023
82024
|
async upscaleImage(src, callback) {
|
|
82025
|
+
if (this.viewImageUrl) {
|
|
82026
|
+
src = this.viewImageUrl + '?url=' + src;
|
|
82027
|
+
}
|
|
82024
82028
|
const width = 512;
|
|
82025
82029
|
const height = 512;
|
|
82026
82030
|
const img = new Image();
|