if (key === 'ENTER') {
let el = $(':focus').find('[aria-keyshortcuts]')
if($this.quiz.screens.getActiveScreen().find('[for="toggleDropdown"]').length > 0) {
- $('[for="toggleDropdown"]:focus').get(0).click();
+ console.log($this.quiz.screens.getActiveScreen().find('[for="toggleDropdown"]'))
+ //$('[for="toggleDropdown"]:focus').get(0).click();
}
if ($this.quiz.utils.isEnabled(el)) {
el.get(0).click((e) => { return false; });
}
});
- $(".list-item").removeAttr("tabindex")
if(this.getActiveScreenType() === "multiple") {
+ $(".list-item").removeAttr("tabindex")
$(".active-screen .list-item").each(function(index) {
$(this).attr('tabindex', index++)
})