You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

actions.native.js 399B

12345678910111213
  1. import { openDialog } from '../base/dialog';
  2. import { ContextMenuReject } from './components/native/ContextMenuReject';
  3. /**
  4. * Displays the context menu for the selected lobby participant.
  5. *
  6. * @param {string} participant - The selected participant's id.
  7. * @returns {Function}
  8. */
  9. export function showContextMenuReject(participant) {
  10. return openDialog(ContextMenuReject, { participant });
  11. }