Skip to content

Commit

Permalink
MDL-42876 Screen reader does not trigger the keyboard move
Browse files Browse the repository at this point in the history
  • Loading branch information
mouneyrac committed Nov 21, 2013
1 parent b58bc15 commit ad417fd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/yui/dragdrop/dragdrop.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@ YUI.add('moodle-core-dragdrop', function(Y) {
.setAttribute('title', title)
.setAttribute('tabIndex', 0)
.setAttribute('data-draggroups', this.groups)
.setAttribute('aria-grabbed', 'false');
.setAttribute('aria-grabbed', 'false')
.setAttribute('role', 'button');
dragelement.appendChild(dragicon);
dragelement.addClass(MOVEICON.cssclass);

Expand Down

0 comments on commit ad417fd

Please sign in to comment.