<div class="row message-wrapper">
<div class="col s12 l10">
<a ng-href="[[msg.User.Url]]" ng-bind="msg.User.Name"></a>
</div>
</div>
<a ng-href="[[msg.User.Url]]" ng-bind="msg.User.Name" ng-click="myCustomRedirect([[msg.User.Url]])"></a>
$scope.myCustomRedirect = function(url){
location.href = url;
}