outlookemailmicrosoft-teamsdiscordmessengercustom-servicesmacoslinuxwindowsinboxwhatsappicloudtweetdeckhipchattelegramhangoutsslackgmailskypefacebook-workplace
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.
15 lines
357 B
15 lines
357 B
9 years ago
|
/** */
|
||
|
Ext.define('Ext.aria.window.Toast', {
|
||
|
override: 'Ext.window.Toast',
|
||
|
|
||
|
initComponent: function() {
|
||
|
// Close tool is not really helpful to blind users
|
||
|
// when Toast window is set to auto-close on timeout
|
||
|
if (this.autoClose) {
|
||
|
this.closable = false;
|
||
|
}
|
||
|
|
||
|
this.callParent();
|
||
|
}
|
||
|
});
|