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
359 B
20 lines
359 B
define([ |
|
"dojo/_base/declare" |
|
], function(declare){ |
|
|
|
// module: |
|
// dojox/mobile/bidi/Scrollable |
|
|
|
return declare(null, { |
|
|
|
showScrollBar:function(){ |
|
this.inherited(arguments); |
|
if(!this.isLeftToRight() && this._scrollBarWrapperV){ |
|
this._scrollBarWrapperV.style.right = "auto"; |
|
this._scrollBarWrapperV.style.left = "2px"; |
|
} |
|
} |
|
|
|
}); |
|
}); |
|
|
|
|