I am facing an issue with opening links from a JSON in the system browser on both Android and iOS devices.
The link generated by the function appears as: {{item.addressLink}}, instead of bit.ly/xyzxyz
Here is what I currently have:
<a href="#" ng-click="goToLink('{{item.addressLink}}')">
<i ng-hide="item.noPhoneAndMap === 1 || item.noMap === 1" class="fa fa-map fa-2x"></i>
</a>
<a href="#" ng-click="goToLink('{{item.link}}')">
<i ng-hide="item.noGlobe === 1" class="fa fa-globe fa-2x"></i>
</a>
The function itself looks like this:
$scope.goToLink = function (url) {
window.open(url,'_system');
}