DOM updates on every keystroke are triggering aria-live region announcements

TNL-1784
This commit is contained in:
Ahsan Ulhaq
2015-03-27 18:23:22 +05:00
parent 01bdfb125e
commit 0b3790a024

View File

@@ -468,7 +468,6 @@ class @Problem
$(element).find('input').on 'input', ->
$p = $(element).find('p.status')
`// Translators: the word unanswered here is about answering a problem the student must solve.`
$p.text gettext("unanswered")
$p.parent().removeClass().addClass "unanswered"
choicegroup: (element) ->
@@ -497,7 +496,6 @@ class @Problem
$(element).find('input').on 'input', ->
$p = $(element).find('p.status')
`// Translators: the word unanswered here is about answering a problem the student must solve.`
$p.text gettext("unanswered")
$p.parent().removeClass("correct incorrect").addClass "unanswered"
inputtypeSetupMethods: