* feat(Deeplinking): Implement for web. * ref(unsupported_browser): Move the mobile version to deeplinking feature * feat(deeplinking_mobile): Redesign. * fix(deeplinking): Use interface.NATIVE_APP_NAME. * feat(dial_in_summary): Add the PIN to the number link. * fix(deep_linking): Handle use case when there isn't deep linking image. * fix(deep_linking): css * fix(deep_linking): deeplink -> "deep linking" * fix(deeplinking_css): Remove position: fixed * docs(deeplinking): Add comment for the openWebApp action.
10 lines
243 B
JavaScript
10 lines
243 B
JavaScript
/**
|
|
* Resolves with <tt>true</tt> if the deep linking page should be shown and with
|
|
* <tt>false</tt> otherwise.
|
|
*
|
|
* @returns {Promise<boolean>}
|
|
*/
|
|
export function _shouldShowDeepLinkingDesktopPage() {
|
|
return Promise.resolve(false);
|
|
}
|