parent
bc5668a4a0
commit
6c82013c84
|
@ -39,9 +39,13 @@ H5P.QuestionSet = function (options, contentId) {
|
||||||
' <div class="qs-footer">' +
|
' <div class="qs-footer">' +
|
||||||
' <div class="qs-progress">' +
|
' <div class="qs-progress">' +
|
||||||
' <% if (progressType == "dots") { %>' +
|
' <% if (progressType == "dots") { %>' +
|
||||||
' <div class="dots-container">' +
|
' <div class="dots-container" role="navigation">' +
|
||||||
' <% for (var i=0; i<questions.length; i++) { %>' +
|
' <% for (var i=0; i<questions.length; i++) { %>' +
|
||||||
' <a href="#" class="progress-dot unanswered" aria-label="<%= texts.unansweredText + ", " + texts.jumpToQuestion.replace("%d", i + 1) %>"></a>' +
|
' <a href="#" class="progress-dot unanswered" ' +
|
||||||
|
' aria-label="<%=' +
|
||||||
|
' texts.jumpToQuestion.replace("%d", i + 1).replace("%total", questions.length)' +
|
||||||
|
' + ", " + texts.unansweredText' +
|
||||||
|
' %>"></a>' +
|
||||||
' <%} %>' +
|
' <%} %>' +
|
||||||
' </div>' +
|
' </div>' +
|
||||||
' <% } else if (progressType == "textual") { %>' +
|
' <% } else if (progressType == "textual") { %>' +
|
||||||
|
@ -88,7 +92,7 @@ H5P.QuestionSet = function (options, contentId) {
|
||||||
nextButton: 'Next question',
|
nextButton: 'Next question',
|
||||||
finishButton: 'Finish',
|
finishButton: 'Finish',
|
||||||
textualProgress: 'Question: @current of @total questions',
|
textualProgress: 'Question: @current of @total questions',
|
||||||
jumpToQuestion: 'Jump to question %d',
|
jumpToQuestion: 'Question %d of %total',
|
||||||
questionLabel: 'Question',
|
questionLabel: 'Question',
|
||||||
readSpeakerProgress: 'Question @current of @total',
|
readSpeakerProgress: 'Question @current of @total',
|
||||||
unansweredText: 'Unanswered',
|
unansweredText: 'Unanswered',
|
||||||
|
@ -338,9 +342,11 @@ H5P.QuestionSet = function (options, contentId) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
var label = (isAnswered ? params.texts.answeredText : params.texts.unansweredText) +
|
var label = params.texts.jumpToQuestion
|
||||||
|
.replace('%d', (dotIndex + 1).toString())
|
||||||
|
.replace('%total', $('.progress-dot', $myDom).length) +
|
||||||
', ' +
|
', ' +
|
||||||
params.texts.jumpToQuestion.replace('%d', (dotIndex + 1).toString());
|
(isAnswered ? params.texts.answeredText : params.texts.unansweredText);
|
||||||
|
|
||||||
$el.toggleClass('unanswered', !isAnswered)
|
$el.toggleClass('unanswered', !isAnswered)
|
||||||
.toggleClass('answered', isAnswered)
|
.toggleClass('answered', isAnswered)
|
||||||
|
@ -355,14 +361,18 @@ H5P.QuestionSet = function (options, contentId) {
|
||||||
var toggleCurrentDot = function (dotIndex, isCurrent) {
|
var toggleCurrentDot = function (dotIndex, isCurrent) {
|
||||||
var $el = $('.progress-dot:eq(' + dotIndex +')', $myDom);
|
var $el = $('.progress-dot:eq(' + dotIndex +')', $myDom);
|
||||||
var texts = params.texts;
|
var texts = params.texts;
|
||||||
var label = texts.currentQuestionText + ', ';
|
var label = texts.jumpToQuestion
|
||||||
|
.replace('%d', (dotIndex + 1).toString())
|
||||||
|
.replace('%total', $('.progress-dot', $myDom).length);
|
||||||
|
|
||||||
if (!isCurrent) {
|
if (!isCurrent) {
|
||||||
var isAnswered = $el.hasClass('answered');
|
var isAnswered = $el.hasClass('answered');
|
||||||
label = (isAnswered ? texts.answeredText : texts.unansweredText) + ', ';
|
label += (isAnswered ? texts.answeredText : texts.unansweredText) + ', ';
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
label += texts.currentQuestionText + ', ';
|
||||||
}
|
}
|
||||||
|
|
||||||
label += texts.jumpToQuestion.replace('%d', (dotIndex + 1).toString());
|
|
||||||
$el.toggleClass('current', isCurrent)
|
$el.toggleClass('current', isCurrent)
|
||||||
.attr('aria-label', label);
|
.attr('aria-label', label);
|
||||||
};
|
};
|
||||||
|
|
|
@ -77,8 +77,8 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "Label for jumping to a certain question",
|
"label": "Label for jumping to a certain question",
|
||||||
"description": "You must use the placeholder '%d' instead of the question number.",
|
"description": "You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.",
|
||||||
"default": "Jump to question %d"
|
"default": "Question %d of %total"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "Copyright dialog question label",
|
"label": "Copyright dialog question label",
|
||||||
|
|
|
@ -82,8 +82,8 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "Label for jumping to a certain question",
|
"label": "Label for jumping to a certain question",
|
||||||
"description": "You must use the placeholder '%d' instead of the question number.",
|
"description": "You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.",
|
||||||
"default": "Jump to question %d"
|
"default": "Question %d of %total"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "Copyright dialog question label",
|
"label": "Copyright dialog question label",
|
||||||
|
|
|
@ -77,8 +77,8 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "Label for jumping to a certain question",
|
"label": "Label for jumping to a certain question",
|
||||||
"description": "You must use the placeholder '%d' instead of the question number.",
|
"description": "You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.",
|
||||||
"default": "Jump to question %d"
|
"default": "Question %d of %total"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "Copyright dialog question label",
|
"label": "Copyright dialog question label",
|
||||||
|
|
|
@ -77,8 +77,8 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "Label for jumping to a certain question",
|
"label": "Label for jumping to a certain question",
|
||||||
"description": "You must use the placeholder '%d' instead of the question number.",
|
"description": "You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.",
|
||||||
"default": "Jump to question %d"
|
"default": "Question %d of %total"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "Copyright dialog question label",
|
"label": "Copyright dialog question label",
|
||||||
|
|
|
@ -79,8 +79,8 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "Merkelapp ved hopping til spørsmål",
|
"label": "Merkelapp ved hopping til spørsmål",
|
||||||
"description": "Du må bruke plassholderen '%d' istedenfor spørsmålsnummeret.",
|
"description": "Du må bruke plassholderen '%d' istedenfor spørsmålsnummeret, og '%total' istedet for totalt antall spørsmål.",
|
||||||
"default": "Hopp til spørsmål %d"
|
"default": "Spørsmål %d av %total"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "Opphavsrett spørsmål-etikett",
|
"label": "Opphavsrett spørsmål-etikett",
|
||||||
|
|
|
@ -79,8 +79,8 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "Merkelapp ved hopping til spørsmål",
|
"label": "Merkelapp ved hopping til spørsmål",
|
||||||
"description": "Du må bruke plassholderen '%d' istedenfor spørsmålstalet.",
|
"description": "Du må bruke plassholderen '%d' istedenfor spørsmålsnummeret, og '%total' istedet for totalt antall spørsmål.",
|
||||||
"default": "Hopp til spørsmål %d"
|
"default": "Spørsmål %d av %total"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "Opphavsrett spørsmål-etikett",
|
"label": "Opphavsrett spørsmål-etikett",
|
||||||
|
|
|
@ -157,8 +157,8 @@
|
||||||
"name": "jumpToQuestion",
|
"name": "jumpToQuestion",
|
||||||
"type": "text",
|
"type": "text",
|
||||||
"label": "Label for jumping to a certain question",
|
"label": "Label for jumping to a certain question",
|
||||||
"description": "You must use the placeholder '%d' instead of the question number.",
|
"description": "You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.",
|
||||||
"default": "Jump to question %d"
|
"default": "Question %d of %total"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "questionLabel",
|
"name": "questionLabel",
|
||||||
|
|
Loading…
Reference in New Issue