diff --git a/customize.dist/pages.js b/customize.dist/pages.js index 123134206..f46ae8545 100644 --- a/customize.dist/pages.js +++ b/customize.dist/pages.js @@ -65,7 +65,7 @@ define([ if (selected === l) { attr.selected = 'selected'; } options.push(h('option', attr, languages[l])); }); - var select = h('select', {role: 'listbox', 'label': 'language'}, options); + var select = h('select', {role: 'listbox', 'label': 'language','aria-label': 'languages'}, options); $(select).change(function () { Language.setLanguage($(select).val() || '', null, function () { window.location.reload();