Skip to content

Instantly share code, notes, and snippets.

@tinacious
Created March 16, 2017 00:18
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tinacious/fdfda5778b4f7df1a336e6e3a7abf0dd to your computer and use it in GitHub Desktop.
Save tinacious/fdfda5778b4f7df1a336e6e3a7abf0dd to your computer and use it in GitHub Desktop.
Add tota11y accessibility tool to the page
/**
* Adds accessibility tool tota11y to the page
*/
(function () {
var totally = document.createElement('script');
totally.src = 'https://cdn.rawgit.com/Khan/tota11y/0.1.3/build/tota11y.min.js';
document.head.appendChild(totally);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment