13 lines
196 B
JavaScript
13 lines
196 B
JavaScript
/**
|
|
* @private
|
|
*/
|
|
Ext.define('Ext.carousel.Item', {
|
|
extend: 'Ext.Decorator',
|
|
|
|
config: {
|
|
baseCls: 'x-carousel-item',
|
|
component: null,
|
|
translatable: true
|
|
}
|
|
});
|