Skip to content

Commit

Permalink
Fixed issue #07763: Better information display in condition editor gui
Browse files Browse the repository at this point in the history
Dev: condition editor GUI use code and not answer, then show code
Dev: Leave a problem with number/string comparaison : really don't know how to fix it
  • Loading branch information
Shnoulle committed Apr 29, 2013
1 parent 69351c3 commit b0515e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/jquery/lime-conditions-tabs.js
Expand Up @@ -60,7 +60,7 @@ function populateCanswersSelect(evt) {
}
}
}
document.getElementById('canswers').options[document.getElementById('canswers').options.length] = new Option(Answers[Keys[i]], Codes[Keys[i]],false,optionSelected);
document.getElementById('canswers').options[document.getElementById('canswers').options.length] = new Option(Codes[Keys[i]]+' ('+Answers[Keys[i]]+')', Codes[Keys[i]],false,optionSelected);
}
}

Expand Down

0 comments on commit b0515e6

Please sign in to comment.