function hook_phonefield_supports_tel in Phone Field 7
Report if browser supports the tel: protocol.
Return value
bool TRUE if device supports tel: protocol, otherwise FALSE.
1 invocation of hook_phonefield_supports_tel()
- _phonefield_tel_support in ./
phonefield.module - Helper function to check for telsupport.
File
- ./
phonefield.api.php, line 14 - Hooks for phonefield module.
Code
function hook_phonefield_supports_tel() {
return FALSE;
}