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.
17 lines
325 B
17 lines
325 B
define([ |
|
"dojo/_base/declare", |
|
"dojo/dom-style", |
|
"../_css3" |
|
], function(declare, domStyle, css3){ |
|
|
|
// module: |
|
// mobile/bidi/Rating |
|
|
|
return declare(null, { |
|
|
|
_setCustomTransform:function(/*Object*/parent){ |
|
domStyle.set(parent, css3.add({"float":"right"}, {transform:"scaleX(-1)"})); |
|
return parent; |
|
} |
|
}); |
|
});
|
|
|