sample skeleton application with dojo toolkit & arcgis js api v 4.30
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.
 
 
 
 
 
 

19 lines
435 B

define([
"dojo/_base/declare",
"dojo/dom-style",
"../_css3"
], function(declare, domStyle, css3){
// module:
// mobile/bidi/Icon
return declare(null, {
_setCustomTransform:function(){
if((this.dir || domStyle.get(this.domNode, "direction")) == "rtl"){
domStyle.set(this.domNode.firstChild, css3.add({"direction":"ltr"}, {}));
domStyle.set(this.domNode, css3.add({}, {transform:"scaleX(-1)"}));
}
}
});
});