You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
679 B
JavaScript
22 lines
679 B
JavaScript
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;
|
|
});
|