You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
426 B
20 lines
426 B
define([ |
|
"dojo/_base/declare", |
|
"dojo/dom-construct" |
|
], function(declare, domConstruct){ |
|
|
|
// module: |
|
// dojox/mobile/bidi/_PickerBase |
|
|
|
return declare(null, { |
|
|
|
buildRendering:function(){ |
|
this.inherited(arguments); |
|
if(!this.isLeftToRight()){ |
|
for(var i = this.domNode.children.length; i > 0; i--){ |
|
domConstruct.place(this.domNode.children[0], this.domNode.children[i - 1], "after"); |
|
} |
|
} |
|
} |
|
}); |
|
});
|
|
|