uiUtil.js 210 B

1234567
  1. // ====================== Mode ======================
  2. export function getRealPlacement(placement, rtl) {
  3. if (placement !== undefined) {
  4. return placement;
  5. }
  6. return rtl ? 'bottomRight' : 'bottomLeft';
  7. }