help please. I have this very simple code.
<sly data-sly-test.temp1="tel:+61-8-8201-3343"></sly>
<a href="}${temp1}">my link</a>
it works fine if using "mailto" as target but when using "tel", the href tag is empty (inspected the tag using firebug while on view as published).
Also as can be seen in the sample code, my last line displays the value. The value displays fine when using "mailto" and "tel".
If I change my code to
<a href="tel:123-456-789">
${properties.linkTitle}
</a>
The href tag is populated properly.
any ideas what I am doing wrong? Thanks
edit:
based on suggestions from this link, I modified both:
- /libs/cq/xssprotection/config.xml
- /libs/sling/xss/config.xml
and restarted my local AEM instance but nothing would work.