You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have an issue with background-image functionality in EDM editor. Everything started with "Defaults" tab in editor, we found out that using filenames or uri with "()" in filename breaks "preview" of images in editor. This happens because of "not escaping" a uri for a css background-property. Fix was fairly easy - to escape a uri.
Let's say we have a file called: test (1).jpg - this would generate a link like that:
"http://....../Image/136779?path=test%20(1).jpg"
and it won't work because of brackets in it, so to fix this issue i've applied apostrophes to the link:
"'http://....../Image/136779?path=test%20(1).jpg'" it seems that this issue appears in this line of code:
But my fix did introduce another issue, where second tab (Content) stopped working because of those apostrophes. Could you please look into this issue?
Thank you in advance.
The text was updated successfully, but these errors were encountered:
Dear Team,
I have an issue with background-image functionality in EDM editor. Everything started with "Defaults" tab in editor, we found out that using filenames or uri with "()" in filename breaks "preview" of images in editor. This happens because of "not escaping" a uri for a css background-property. Fix was fairly easy - to escape a uri.
Let's say we have a file called: test (1).jpg - this would generate a link like that:
"http://....../Image/136779?path=test%20(1).jpg"
and it won't work because of brackets in it, so to fix this issue i've applied apostrophes to the link:
"'http://....../Image/136779?path=test%20(1).jpg'" it seems that this issue appears in this line of code:
But my fix did introduce another issue, where second tab (Content) stopped working because of those apostrophes. Could you please look into this issue?
Thank you in advance.
The text was updated successfully, but these errors were encountered: