mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2025-12-30 11:22:31 +00:00
* Fix: removed web actions from common middlewares * Fixed raise hand sound Fix sound to play on raise not lower and work on keyboard shortcut as well * Fixed reaction keyboard shortcuts Register shortcuts only when there's more than one participant * Enforce reactions feature flag on reaction received * Disable reactions by default on native * Enable reactions on native by default * Sort props alphabetically * Created isreactionsEnabled function * Remove unused imports * Fix. No longer show toolbox on reactions and jibri On message received don't show toolbox for jibri * Fix isReactionsEnabled function for native On native check for flag and config option as well
18 lines
769 B
JavaScript
18 lines
769 B
JavaScript
// XXX The function parseURLParams is exported by the feature base/util (as
|
|
// defined in the terminology of react/). However, this file is (very likely)
|
|
// bundled in external_api in addition to app.bundle and, consequently, it is
|
|
// best to import as little as possible here (rather than the whole feature
|
|
// base/util) in order to minimize the amount of source code bundled into
|
|
// multiple bundles.
|
|
import { parseURLParams } from '../../react/features/base/util/parseURLParams';
|
|
|
|
/**
|
|
* JitsiMeetExternalAPI id - unique for a webpage.
|
|
*/
|
|
export const API_ID = parseURLParams(window.location).jitsi_meet_external_api_id;
|
|
|
|
/**
|
|
* The payload name for the datachannel/endpoint text message event
|
|
*/
|
|
export const ENDPOINT_TEXT_MESSAGE_NAME = 'endpoint-text-message';
|