I'm using this code in the view:
<a href="tel:{{doc.emergency}}" class="button phone button-full" >Phone Call</a>
And I can't make the call. This is my config.xml
<access origin="tel:*" launch-external="yes" />
<allow-intent href="tel:*" />
For me the following works:
<access origin="tel:*" launch-external="yes"/>
<allow-intent href="tel:*" />
<allow-navigation href="tel:*" />
A similar question was asked here.