Browse Source

external_api: fixed using deeplinks

This update opens links in the full body of the window so deeplinks will work on iOS Safari when using the external API in an iFrame.
master
msalmasi 4 years ago
parent
commit
532dadb245
No account linked to committer's email address

+ 2
- 0
react/features/deep-linking/components/DeepLinkingMobilePage.web.js View File

@@ -129,6 +129,7 @@ class DeepLinkingMobilePage extends Component<Props> {
129 129
                         <button className = { downloadButtonClassName }>
130 130
                             { t(`${_TNS}.downloadApp`) }
131 131
                         </button>
132
+                        target = '_top'
132 133
                     </a>
133 134
                     <a
134 135
                         { ...onOpenLinkProperties }
@@ -138,6 +139,7 @@ class DeepLinkingMobilePage extends Component<Props> {
138 139
                         {/* <button className = { `${_SNS}__button` }> */}
139 140
                         { t(`${_TNS}.openApp`) }
140 141
                         {/* </button> */}
142
+                        target = '_top'
141 143
                     </a>
142 144
                     { renderPromotionalFooter() }
143 145
                     <DialInSummary

Loading…
Cancel
Save