mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 18:39:52 +00:00
56fb18243c
Change-Id: Ifef4f3c0fee13a241488f473b561ced7b327fd73
48 lines
1.1 KiB
JavaScript
48 lines
1.1 KiB
JavaScript
/**
|
|
* Mixin for adding descriptive ARIA support to elements.
|
|
*
|
|
* @class
|
|
* @abstract
|
|
*
|
|
* @constructor
|
|
* @param {Object} [config] Configuration options
|
|
* @cfg {jQuery} [$ariaDescribedBy]
|
|
* @cfg {string} [ariaLabel]
|
|
*/
|
|
ve.ui.MWAriaDescribe = function VeUiMWAriaDescribe( config ) {
|
|
if ( config.$ariaDescribedBy ) {
|
|
this.setAriaDescribedBy( config.$ariaDescribedBy );
|
|
}
|
|
|
|
if ( config.ariaLabel ) {
|
|
this.setAriaLabel( config.ariaLabel );
|
|
}
|
|
};
|
|
|
|
/* Setup */
|
|
|
|
OO.initClass( ve.ui.MWAriaDescribe );
|
|
|
|
/**
|
|
* @param {jQuery} $description
|
|
* @chainable
|
|
* @return {OO.ui.Element} The element, for chaining
|
|
*/
|
|
ve.ui.MWAriaDescribe.prototype.setAriaDescribedBy = function ( $description ) {
|
|
if ( !$description.attr( 'id' ) ) {
|
|
$description.attr( 'id', OO.ui.generateElementId() );
|
|
}
|
|
this.$element.attr( 'aria-describedby', $description.attr( 'id' ) );
|
|
return this;
|
|
};
|
|
|
|
/**
|
|
* @param {string} label
|
|
* @chainable
|
|
* @return {OO.ui.Element} The element, for chaining
|
|
*/
|
|
ve.ui.MWAriaDescribe.prototype.setAriaLabel = function ( label ) {
|
|
this.$element.attr( 'aria-label', label );
|
|
return this;
|
|
};
|