1
0
mirror of https://github.com/videojs/video.js.git synced 2025-01-04 06:48:49 +02:00

Close GH-777: Fix aria-label big-play-button.

This commit is contained in:
J. Tangelder 2013-10-17 16:06:16 -07:00 committed by Steve Heffernan
parent 3203c2c5ed
commit e0794cf4b4

View File

@ -12,7 +12,7 @@ vjs.BigPlayButton = vjs.Button.extend();
vjs.BigPlayButton.prototype.createEl = function(){
return vjs.Button.prototype.createEl.call(this, 'div', {
className: 'vjs-big-play-button',
innerHTML: '<span></span>',
innerHTML: '<span aria-hidden="true"></span>',
'aria-label': 'play video'
});
};