You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is not so much an issue as something I am wondering about, and I can't figure out on my own how to do this. I would like to add an image to the descriptive text items in the ESM app, but have no idea where to define this or where to call the image/how to make sure it appears on the screen under said text.
I've got a hunch that it's supposed to go somewhere in here (see below) but I'm not sure at all.
switch (question.type)
case 'instructions':
question.buttons = Mustache.render(instructionTmpl, {id: question.variableName+"1"});
$("#question").html(Mustache.render(questionTmpl, question)).fadeIn(400);
var instruction = [];
$("#question ul li button").click(function(){
instruction.push(question.variableName);
instruction.push($(this).val());
app.recordResponse(String(instruction), question_index, question.type);
});
break;
If anyone has any tips or experience displaying an image together with an item, help is very much appreciated!
Cheers,
Nastasia
The text was updated successfully, but these errors were encountered:
Hi all!
This is not so much an issue as something I am wondering about, and I can't figure out on my own how to do this. I would like to add an image to the descriptive text items in the ESM app, but have no idea where to define this or where to call the image/how to make sure it appears on the screen under said text.
I've got a hunch that it's supposed to go somewhere in here (see below) but I'm not sure at all.
If anyone has any tips or experience displaying an image together with an item, help is very much appreciated!
Cheers,
Nastasia
The text was updated successfully, but these errors were encountered: