@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
@@ -50027,7 +50027,8 @@ class Image$1 {
|
|
50027
50027
|
let basename = '';
|
50028
50028
|
|
50029
50029
|
if (img.src.indexOf('base64') === -1) {
|
50030
|
-
let
|
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'));
|