windowsinboxwhatsappicloudtweetdeckhipchattelegramhangoutsslackgmailskypefacebook-workplaceoutlookemailmicrosoft-teamsdiscordmessengercustom-servicesmacoslinux
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.
11 lines
377 B
11 lines
377 B
9 years ago
|
Ext.define('Ext.overrides.app.domain.Component', {
|
||
|
override: 'Ext.app.domain.Component',
|
||
|
requires: [
|
||
|
'Ext.Component'
|
||
|
]
|
||
|
}, function(ComponentDomain) {
|
||
|
// The core Component domain monitors events on the Ext.Widget class
|
||
|
// in Ext Components are not widgets so we need to monitor Ext.Component as well.
|
||
|
ComponentDomain.monitor(Ext.Component);
|
||
|
});
|