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.
20 lines
640 B
20 lines
640 B
/** */ |
|
Ext.define('Ext.aria.button.Cycle', { |
|
override: 'Ext.button.Cycle' |
|
|
|
//<debug> |
|
, constructor: function(config) { |
|
// Don't warn if we're under the slicer |
|
if (!Ext.theme) { |
|
Ext.log.warn( |
|
"Using Cycle buttons is not recommended in WAI-ARIA " + |
|
"compliant applications, because their behavior conflicts " + |
|
"with accessibility best practices. See WAI-ARIA 1.0 " + |
|
"Authoring guide: http://www.w3.org/TR/wai-aria-practices/#menubutton" |
|
); |
|
} |
|
|
|
this.callParent(arguments); |
|
} |
|
//</debug> |
|
});
|
|
|