We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ad2bab commit e901c8dCopy full SHA for e901c8d
1 file changed
index.html
@@ -18,6 +18,8 @@
18
<style>
19
.input-answer {
20
margin-bottom: 1em;
21
+ margin-left: 1em;
22
+ font-weight: normal;
23
}
24
</style>
25
</head>
@@ -29,6 +31,11 @@
29
31
url: window.location.url,
30
32
allowStyleInjection: true,
33
});
34
+ function updateLayout() {
35
+ parent.send({
36
+ type: 'updateLayout'
37
+ });
38
+ }
39
40
41
</script>
@@ -186,9 +193,10 @@
186
193
event.preventDefault();
187
194
var result = dataGetter()
188
195
parent.send(result);
196
+ updateLayout();
189
197
};
190
198
191
-
199
+
192
200
let fileUrl;
201
let divMultipleChoice = document.getElementById('div_answers_mc');
202
let divSingleChoice = document.getElementById('div_answers_sc');
0 commit comments