Last change
on this file since 529 was
483,
checked in by hendrikvanantwerpen, 11 years ago
|
Added Dojo 1.9.3 release.
|
File size:
609 bytes
|
Line | |
---|
1 | define([ |
---|
2 | "dojo/_base/declare" |
---|
3 | ], function(declare){ |
---|
4 | |
---|
5 | // module: |
---|
6 | // dojox/mobile/bidi/TreeView |
---|
7 | |
---|
8 | return declare(null, { |
---|
9 | // summary: |
---|
10 | // Support for control over text direction for mobile TreeView widget, using Unicode Control Characters to control text direction. |
---|
11 | // description: |
---|
12 | // Text direction attribute of the Tree is set to ListItem. |
---|
13 | // This class should not be used directly. |
---|
14 | // Mobile TreeView widget loads this module when user sets "has: {'dojo-bidi': true }" in data-dojo-config. |
---|
15 | _customizeListItem: function(listItemArgs){ |
---|
16 | listItemArgs.textDir = this.textDir; |
---|
17 | } |
---|
18 | |
---|
19 | }); |
---|
20 | }); |
---|
Note: See
TracBrowser
for help on using the repository browser.