Issue with loading an iframe in Sightly (AEM 6.2)
We have created a component for iframe in touch UI and created a model class, We are trying to load a URL with some parameters
below is the code snippet for reference
<sly data-sly-use.model="com.test.IframeModel">
${model.url @ context='uri'}
<iframe src="${model.url @ context='uri'}"></iframe>
</sly>
generated dome
Source image file 7090 not available
if we try to display the URL outside iframe src URL is printed on the page, and when hard code the URL sent from backend in the iframe it is loading properly
<iframe src="https://www.mysite.com/?abc=134&fgr=qwe"></iframe>


