aboutsummaryrefslogtreecommitdiff
path: root/resources/assets/javascripts/lib/screenreader.js
blob: b8b9d098d468167a880a5e99d249f17075535e1b (plain)
1
2
3
4
5
6
7
8
class Screenreader
{
    static notify(text) {
        $('#notes_for_screenreader').text(text);
    }
}

export default Screenreader;