- Joined
- May 25, 2019
- Messages
- 1,388
- Points
- 523
Reputation:
DareDevil submitted a new resource:
Xon Browser Detection - A light-weight shim around Mobile_detect for XenForo 2
Read more about this resource...
Xon Browser Detection - A light-weight shim around Mobile_detect for XenForo 2
Usage (in templates)
The add-on injects the global variable $xf.mobileDetect, check that the variable is set before calling any methods to prevent errors during upgrades or if the add-on is disabled.
Code:<xf:if is="$xf.mobileDetect && $xf.mobileDetect.isMobile()"> Is Mobile <xf:else />
Not Mobile
Not FirefoxCode:</xf:if> <xf:if is="$xf.mobileDetect && $xf.mobileDetect.is('Firefox')"> Is Firefox <xf:else />
Code:</xf:if> <xf:if is="$xf.mobileDetect...
Read more about this resource...