@innovastudio/contentbuilder 1.3.60 → 1.3.61

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.3.60",
4
+ "version": "1.3.61",
5
5
  "description": "",
6
6
  "main": "public/contentbuilder/contentbuilder.esm.js",
7
7
  "files": [
@@ -50027,7 +50027,8 @@ class Image$1 {
50027
50027
  let basename = '';
50028
50028
 
50029
50029
  if (img.src.indexOf('base64') === -1) {
50030
- let filename = img.src.substring(img.src.lastIndexOf('/') + 1);
50030
+ let src = img.getAttribute('src');
50031
+ let filename = src.substring(src.lastIndexOf('/') + 1);
50031
50032
  basename = dom.baseName(filename);
50032
50033
  } else {
50033
50034
  basename = dom.baseName(img.getAttribute('data-filename'));