import { Keyboard } from './foundation.util.keyboard';
import { Nest } from './foundation.util.nest';
import { Box } from './foundation.util.box';
-import { rtl } from './foundation.util.core';
+import { rtl as Rtl } from './foundation.util.core';
import { Plugin } from './foundation.plugin';
-const Rtl = rtl;
/**
* DropdownMenu module.
import $ from 'jquery';
import { Keyboard } from './foundation.util.keyboard';
import { Move } from './foundation.util.motion';
-import { GetYoDigits, rtl } from './foundation.util.core';
-let Rtl = rtl;
+import { GetYoDigits, rtl as Rtl } from './foundation.util.core';
import { Plugin } from './foundation.plugin';
'use strict';
-import { rtl } from "./foundation.util.core";
-
-var Rtl = rtl;
+import { rtl as Rtl } from "./foundation.util.core";
var Box = {
ImNotTouchingYou: ImNotTouchingYou,
'use strict';
import $ from 'jquery';
-import { rtl } from './foundation.util.core';
+import { rtl as Rtl } from './foundation.util.core';
const keyCodes = {
9: 'TAB',
if (typeof commandList.ltr === 'undefined') { // this component does not differentiate between ltr and rtl
cmds = commandList; // use plain list
} else { // merge ltr and rtl: if document is rtl, rtl overwrites ltr and vice versa
- if (rtl()) cmds = $.extend({}, commandList.ltr, commandList.rtl);
+ if (Rtl()) cmds = $.extend({}, commandList.ltr, commandList.rtl);
else cmds = $.extend({}, commandList.rtl, commandList.ltr);
}