removes text value from span that is intended only to receive focus

This commit is contained in:
Mark Sadecki
2016-06-23 17:40:06 -04:00
parent 157c68506d
commit 87ea169ae5

View File

@@ -48,8 +48,7 @@ define(['jquery', 'underscore', 'annotator_1.2.9'], function ($, _, Annotator) {
addFocusGrabber: function () {
this.focusGrabber = $('<span />', {
'class': 'sr edx-notes-focus-grabber',
'tabindex': '-1',
'text': gettext('Focus grabber')
'tabindex': '-1'
});
this.annotator.wrapper.before(this.focusGrabber);
},