UNPKG

dijit

Version:

Dijit provides a complete collection of user interface controls based on Dojo, giving you the power to create web applications that are highly optimized for usability, performance, internationalization, accessibility, but above all deliver an incredible u

22 lines (16 loc) 679 B
define(["dojo/has", "./_WidgetBase", "./_BidiMixin"], function(has, _WidgetBase, _BidiMixin){ // module: // dijit/_BidiSupport /*===== return function(){ // summary: // Deprecated module for enabling textdir support in the dijit widgets. New code should just define // has("dojo-bidi") to return true, rather than manually requiring this module. }; =====*/ _WidgetBase.extend(_BidiMixin); // Back-compat with version 1.8: just including _BidiSupport should trigger bidi support in all the widgets. // Although this statement doesn't do much because the other widgets have likely already been loaded. has.add("dojo-bidi", true); return _WidgetBase; });