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.
22 lines (19 loc) • 614 B
JavaScript
define([
"dojo/_base/declare"
], function(declare){
// module:
// dojox/mobile/bidi/_StoreListMixin
return declare(null, {
// summary:
// Support for control over text direction for mobile _StoreListMixin and _DataListMixin.
// description:
// Property textDir is set to created ListItem.
// This class should not be used directly.
// Mobile _StoreListMixin and _DataListMixin load this module when user sets "has: {'dojo-bidi': true }" in data-dojo-config.
createListItem: function(item){
var w = this.inherited(arguments);
w.set("textDir", this.textDir);
return w;
}
});
});