Commit 9fc25cd7 by Mark Sadecki Committed by GitHub

Merge pull request #12851 from edx/cptvitamin/AC-516-focusgrabber

removes text value from span that is intended only to receive focus
parents a5610294 6f9ccd8d
...@@ -47,9 +47,8 @@ define(['jquery', 'underscore', 'annotator_1.2.9'], function ($, _, Annotator) { ...@@ -47,9 +47,8 @@ define(['jquery', 'underscore', 'annotator_1.2.9'], function ($, _, Annotator) {
addFocusGrabber: function () { addFocusGrabber: function () {
this.focusGrabber = $('<span />', { this.focusGrabber = $('<span />', {
'class': 'sr edx-notes-focus-grabber', 'class': 'edx-notes-focus-grabber',
'tabindex': '-1', 'tabindex': '-1'
'text': gettext('Focus grabber')
}); });
this.annotator.wrapper.before(this.focusGrabber); this.annotator.wrapper.before(this.focusGrabber);
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment