Skip to content

Commit

Permalink
Dev: Launch checkcondition function according to question type
Browse files Browse the repository at this point in the history
Dev: #8590 child
  • Loading branch information
Shnoulle committed Jan 26, 2014
1 parent ea6e5c1 commit bdb63d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/expressions/em_javascript.js
Expand Up @@ -773,11 +773,11 @@ function LEMsetTabIndexes()
// Can use $(this)[0].type
if($(this).attr('type')=="text")
{
checkconditions($(this).val(), $(this).attr('name'), 'text', 'TAB');
$(this).triggerHandler("keyup");
}
if($(this).is('select'))
{
checkconditions($(this).val(), $(this).attr('name'), 'select-one', 'TAB');
$(this).triggerHandler("change");
}
$(this).focus();
return true;
Expand Down

0 comments on commit bdb63d0

Please sign in to comment.