tweetdeckhipchattelegramhangoutsslackgmailskypefacebook-workplaceoutlookemailmicrosoft-teamsdiscordmessengercustom-servicesmacoslinuxwindowsinboxwhatsappicloud
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.
19 lines
451 B
19 lines
451 B
9 years ago
|
/**
|
||
|
* Ext.FocusManager singleton is deprecated since Ext JS 5.1.
|
||
|
* Focus management is always on and does not need any further steps to enable.
|
||
|
* @deprecated
|
||
|
*/
|
||
|
Ext.define('Ext.FocusManager', {
|
||
|
singleton: true,
|
||
|
alternateClassName: ['Ext.FocusMgr'],
|
||
|
|
||
|
/**
|
||
|
* @property {Boolean} enabled
|
||
|
* Whether or not the FocusManager is currently enabled
|
||
|
*/
|
||
|
enabled: true,
|
||
|
|
||
|
enable: Ext.emptyFn,
|
||
|
disable: Ext.emptyFn
|
||
|
});
|