mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2025-12-30 11:22:31 +00:00
* ref(info): be able to open dialog through store * feat(info): automatically show the info dialog Conditions: - Lonely call - Has not opened the info dialog yet * squash: change to show on start, hide later * squash: update naming and comment
12 lines
252 B
JavaScript
12 lines
252 B
JavaScript
/**
|
|
* Mapping of tooltip positions to equivalent {@code AKInlineDialog} positions.
|
|
*
|
|
* @private
|
|
*/
|
|
export const TOOLTIP_TO_POPUP_POSITION = {
|
|
bottom: 'bottom center',
|
|
left: 'left middle',
|
|
top: 'top center',
|
|
right: 'right middle'
|
|
};
|