icloudtweetdeckhipchattelegramhangoutsslackgmailskypefacebook-workplaceoutlookemailmicrosoft-teamsdiscordmessengercustom-servicesmacoslinuxwindowsinboxwhatsapp
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
550 B
17 lines
550 B
Ext.define('Ext.rtl.scroll.Scroller', { |
|
override: 'Ext.scroll.Scroller', |
|
|
|
config: { |
|
/** |
|
* @cfg {Boolean} [rtl=false] |
|
* `true` to enable scrolling of "right-to-left" content. This is typically |
|
* configured automatically by an {@link Ext.Component} based on its inherited |
|
* {@link Ext.Component#rtl rtl} state |
|
* @member Ext.scroll.Scroller |
|
*/ |
|
rtl: null |
|
}, |
|
|
|
// Empty updater - workaround for https://sencha.jira.com/browse/EXTJS-14574 |
|
updateRtl: Ext.emptyFn |
|
});
|
|
|