Retry "external_api: fixed using deeplinks"

Set target='_top' inside anchor.

Courtesy of #6700
Follow-up to: #6784
pull/6798/head jitsi-meet_4633
Suguru Hirahara 5 years ago committed by Jaya Allamsetty
parent 75c836c70c
commit 8c30e43b5f
  1. 6
      react/features/deep-linking/components/DeepLinkingMobilePage.web.js

@ -125,7 +125,8 @@ class DeepLinkingMobilePage extends Component<Props> {
<a
{ ...onOpenLinkProperties }
href = { this._generateDownloadURL() }
onClick = { this._onDownloadApp }>
onClick = { this._onDownloadApp }
target = '_top'>
<button className = { downloadButtonClassName }>
{ t(`${_TNS}.downloadApp`) }
</button>
@ -134,7 +135,8 @@ class DeepLinkingMobilePage extends Component<Props> {
{ ...onOpenLinkProperties }
className = { `${_SNS}__href` }
href = { generateDeepLinkingURL() }
onClick = { this._onOpenApp }>
onClick = { this._onOpenApp }
target = '_top'>
{/* <button className = { `${_SNS}__button` }> */}
{ t(`${_TNS}.openApp`) }
{/* </button> */}

Loading…
Cancel
Save