|
|
@@ -95,7 +95,8 @@ Question.prototype.getHint = function(hintLevel) {
|
|
|
var hints = [];
|
|
|
for (var i =0, len = this.response.length; i < len; ++i)
|
|
|
hints.push(Question.toHint(this.response[i], this.normalizedResponse[i], this.boundaries, i, type, hintLevel));
|
|
|
- return hints.join (" ou ");
|
|
|
+ return hints.length > 1 ? ("Plusieures reponses acceptees: " +hints.join(" ou ")) : hints[0];
|
|
|
+ return hints.join(" ou ");
|
|
|
}
|
|
|
|
|
|
Question.prototype.check = function(response) {
|