From 87ea169ae5b52e54602d0b0c65f08cd8eeb2fd9d Mon Sep 17 00:00:00 2001 From: Mark Sadecki Date: Thu, 23 Jun 2016 17:40:06 -0400 Subject: [PATCH] removes text value from span that is intended only to receive focus --- lms/static/js/edxnotes/plugins/accessibility.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lms/static/js/edxnotes/plugins/accessibility.js b/lms/static/js/edxnotes/plugins/accessibility.js index 79972261d8..b8fc52dba7 100644 --- a/lms/static/js/edxnotes/plugins/accessibility.js +++ b/lms/static/js/edxnotes/plugins/accessibility.js @@ -48,8 +48,7 @@ define(['jquery', 'underscore', 'annotator_1.2.9'], function ($, _, Annotator) { addFocusGrabber: function () { this.focusGrabber = $('', { 'class': 'sr edx-notes-focus-grabber', - 'tabindex': '-1', - 'text': gettext('Focus grabber') + 'tabindex': '-1' }); this.annotator.wrapper.before(this.focusGrabber); },