diff --git a/src/accessibility/accessibleTarget.js b/src/accessibility/accessibleTarget.js index 070b753..2202637 100644 --- a/src/accessibility/accessibleTarget.js +++ b/src/accessibility/accessibleTarget.js @@ -15,16 +15,29 @@ var accessibleTarget = { /** - * @todo Needs docs. + * Flag for if the object is accessible. If true AccessibilityManager will overlay a + * shadow div with attributes set + * + * @member {boolean} */ accessible:false, /** - * @todo Needs docs. + * Sets the title attribute of the shadow div + * If accessibleTitle AND accessibleHint has not been this will default to 'displayObject [tabIndex]' + * + * @member {string} */ accessibleTitle:null, /** + * Sets the aria-label attribute of the shadow div + * + * @member {string} + */ + accessibleHint:null, + + /** * @todo Needs docs. */ tabIndex:0,