Ng-href="tel: redirecting to call with empty number

You should take a look at this article

Basically you have to tell angular in your config set up that it should allow tel

app.config(['$compileProvider', function($compileProvider) {
  $compileProvider.aHrefSanitizationWhitelist(/^\s*(https?|file|tel):/);
}]);