I am getting the user details from a webservice.
Everything is fine except that the javascript is adding an unsafe attribute to the email Id field.
<div class="row">
    <div class="col col-50">
        <span class="input-label">Created By</span>
    </div>
    <div class="col col-50" style="color:white">
        {{Idea.FirstName}} {{Idea.LastName}}
        <a ng-href="sip:{{Idea.EmailId}}">
            <i class="ion-ios-chatboxes-outline" style="font-size:2em;color:white"></i>
        </a>
    </div>
</div>
When I am hovering or clicking the chat icon, a message is shown in the corner: unsafe:sip:"EmailId" 
 
     
    