Temporarily disable aria warning in angularjs-material

Issue #892 resolved
Brian Lewis repo owner created an issue

At some point, address the broader question of accessbility, noting that we can then remove suppression of messages in order to assist in providing full aria support

For now, just clean up the console window, as suggested here:

https://stackoverflow.com/questions/30666742/how-do-i-disable-ngaria-in-ngmaterial

app.config(function($mdAriaProvider) {
   // Globally disables all ARIA warnings.
   $mdAriaProvider.disableWarnings();
});

Comments (1)

  1. Log in to comment