Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

shouldShowDeepLinkingDesktopPage.js 243B

123456789
  1. /**
  2. * Resolves with <tt>true</tt> if the deep linking page should be shown and with
  3. * <tt>false</tt> otherwise.
  4. *
  5. * @returns {Promise<boolean>}
  6. */
  7. export function _shouldShowDeepLinkingDesktopPage() {
  8. return Promise.resolve(false);
  9. }