I suggest you a temporary fix. Maybe we'll include this solution as standard, but I need to discuss it.
Edit file modules/CRM/Contacts/ContactsCommon_0.php
line around 916.
There is a method:
public static function display_phone($r,$nolink,$desc) {
if ($nolink) {
return $r[$desc['id']];
}
...
Change it to:
public static function display_phone($r,$nolink,$desc) {
if ($nolink && !MOBILE_DEVICE) {
return $r[$desc['id']];
}
...
Then you can use mobile view and you'll be able to click on numbers for Companies - only Phone, Fax is not clickable; and Contacts - Mobile, Work and Home Phone.
Regards,
Adam