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ů.

functions.web.js 265B

1234567891011
  1. // @flow
  2. /**
  3. * Returns the visibility state of the reactions menu.
  4. *
  5. * @param {Object} state - The state of the application.
  6. * @returns {boolean}
  7. */
  8. export function getReactionsMenuVisibility(state: Object) {
  9. return state['features/reactions'].visible;
  10. }