Hi George,
you need to edit the js file named controlle.js at the path root/plugins/system/screenreader/screenreader/libraries/controller/controller.js
It's a minified javascript source code so you find the unminified version added to the zip in attachment to download and use.
After that you find code for buttons, for example for the 'Play' button you have:
| Code: |
var playButton = $('<button/>').attr({'id':'fr_screenreader_play',
'title':'Play',
'accesskey':screenReaderOptions.accesskey_play})
.addClass('pinnable');
|
and you can add a couple of rules to add a text with font zero:
| Code: |
var playButton = $('<button/>').attr({'id':'fr_screenreader_play',
'title':'Play',
'accesskey':screenReaderOptions.accesskey_play})
.addClass('pinnable')
.html('Play')
.css('font-size', 0);
|
This should work to add a not visible text to button available for the Wave validation.
BR
John