summaryrefslogtreecommitdiffstats
path: root/webapp/utils/user_agent.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/utils/user_agent.jsx')
-rw-r--r--webapp/utils/user_agent.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/webapp/utils/user_agent.jsx b/webapp/utils/user_agent.jsx
index 1074b02e2..c16d61d45 100644
--- a/webapp/utils/user_agent.jsx
+++ b/webapp/utils/user_agent.jsx
@@ -64,7 +64,7 @@ export function isIosWeb() {
}
export function isIos() {
- return userAgent.indexOf('iPhone') !== -1;
+ return userAgent.indexOf('iPhone') !== -1 || userAgent.indexOf('iPad') !== -1;
}
export function isAndroid() {