dojox
Version:
Dojo eXtensions, a rollup of many useful sub-projects and varying states of maturity – from very stable and robust, to alpha and experimental. See individual projects contain README files for details.
25 lines (21 loc) • 711 B
JavaScript
define([
"dojo/_base/declare"
], function(declare){
// module:
// dojox/mobile/bidi/TreeView
return declare(null, {
// summary:
// Support for control over text direction for mobile TreeView widget, using Unicode Control Characters to control text direction.
// description:
// Text direction attribute of the Tree is set to ListItem.
// This class should not be used directly.
// Mobile TreeView widget loads this module when user sets "has: {'dojo-bidi': true }" in data-dojo-config.
_customizeListItem: function(listItemArgs){
listItemArgs.textDir = this.textDir;
if(!this.isLeftToRight()){
listItemArgs.dir = "rtl";
listItemArgs.transitionDir = -1;
}
}
});
});