7 lines
210 B
JavaScript
7 lines
210 B
JavaScript
// ====================== Mode ======================
|
|
export function getRealPlacement(placement, rtl) {
|
|
if (placement !== undefined) {
|
|
return placement;
|
|
}
|
|
return rtl ? 'bottomRight' : 'bottomLeft';
|
|
} |