Skip to content

Commit

Permalink
Fixed issue Revert to using onchange instead of onkeyup for Array Num…
Browse files Browse the repository at this point in the history
…bers when using dropdown lists of numbers
  • Loading branch information
TMSWhite committed Jun 30, 2012
1 parent 63efb84 commit b1ed24f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/helpers/qanda_helper.php
Expand Up @@ -5949,7 +5949,7 @@ function do_array_multiflexi($ia)
if($inputboxlayout == false) {
$answer .= "\t<select class=\"multiflexiselect\" name=\"$myfname2\" id=\"answer{$myfname2}\" title=\""
. HTMLEscape($labelans[$thiskey]).'"'
. " onkeyup=\"$checkconditionFunction(this.value, this.name, this.type)\">\n"
. " onchange=\"$checkconditionFunction(this.value, this.name, this.type)\">\n"
. "<option value=\"\">".$clang->gT('...')."</option>\n";

for($ii=$minvalue; ($reverse? $ii>=$maxvalue:$ii<=$maxvalue); $ii+=$stepvalue) {
Expand Down

0 comments on commit b1ed24f

Please sign in to comment.