From 0ec4e6a8050b3936f830578a42cb1a57f5f15c01 Mon Sep 17 00:00:00 2001 From: damencho Date: Fri, 3 May 2019 10:49:50 +0100 Subject: [PATCH] Makes numbers clickable on the more numbers page when opened on mobile. --- .../invite/components/dial-in-info-page/DialInInfoApp.web.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/react/features/invite/components/dial-in-info-page/DialInInfoApp.web.js b/react/features/invite/components/dial-in-info-page/DialInInfoApp.web.js index 224563b5f..1e27aeace 100644 --- a/react/features/invite/components/dial-in-info-page/DialInInfoApp.web.js +++ b/react/features/invite/components/dial-in-info-page/DialInInfoApp.web.js @@ -8,16 +8,19 @@ import { i18next } from '../../../base/i18n'; import { DialInSummary } from '../dial-in-summary'; import NoRoomError from './NoRoomError'; +import { Platform } from '../../../base/react'; document.addEventListener('DOMContentLoaded', () => { const { room } = parseURLParams(window.location, true, 'search'); + const OS = Platform.OS; + const isUsingMobileBrowser = OS === 'android' || OS === 'ios'; ReactDOM.render( { room ? : } ,