web-apps/vendor/touch/src/Title.js
Maxim Kadushkin 741b10515d webapps added
2016-03-10 21:48:53 -03:00

27 lines
509 B
JavaScript

/**
* {@link Ext.Title} is used for the {@link Ext.Toolbar#title} configuration in the {@link Ext.Toolbar} component.
* @private
*/
Ext.define('Ext.Title', {
extend: 'Ext.Component',
xtype: 'title',
config: {
/**
* @cfg
* @inheritdoc
*/
baseCls: 'x-title',
/**
* @cfg {String} title The title text
*/
title: ''
},
// @private
updateTitle: function(newTitle) {
this.setHtml(newTitle);
}
});