DocumentServer/OfficeWeb/3rdparty/touch/src/Label.js
nikolay ivanov a8be6b9e72 init repo
2014-07-05 18:22:49 +00:00

23 lines
468 B
JavaScript

/**
* A simple label component which allows you to insert content using {@link #html} configuration.
*
* @example miniphone
* Ext.Viewport.add({
* xtype: 'label',
* html: 'My label!'
* });
*/
Ext.define('Ext.Label', {
extend: 'Ext.Component',
xtype: 'label',
config: {
baseCls: Ext.baseCSSPrefix + 'label'
/**
* @cfg {String} html
* The label of this component.
*/
}
});