-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfigs.js
More file actions
70 lines (69 loc) · 1.82 KB
/
configs.js
File metadata and controls
70 lines (69 loc) · 1.82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/**
* @overview App configurations of <i>ccmjs</i>-based web component for display results.
* @author André Kless <andre.kless@web.de> 2023
* @license The MIT License (MIT)
*/
export const demo = {
"cols": [ "user", "component", "app", "correct", "total", "input", "attempts", "created_at", "updated_at", "details" ],
"data": {
"store": [ "ccm.store", [
{
"key": [ "exercise1", "john" ],
"app": "exercise1",
"user": "john",
"origin": [ "ccm.start", "https://ccmjs.github.io/akless-components/cloze/ccm.cloze.js" ],
"correct": 2,
"total": 3,
"attempts": 1,
"created_at": 1675781132530,
"updated_at": 1675781132530,
"sections": [
{
"input": "Hello",
"solution": "Hello",
"correct": true
},
{
"input": "Universe",
"solution": "World",
"correct": false
},
{
"input": "Welcome",
"solution": "Welcome",
"correct": true
}
]
},
{
"key": [ "exercise2", "john" ],
"app": "exercise2",
"user": "john",
"origin": [ "ccm.start", "https://ccmjs.github.io/akless-components/cloze/ccm.cloze.js" ],
"correct": 2,
"total": 3,
"attempts": 1,
"created_at": 1675781132530,
"updated_at": 1675781132530,
"sections": [
{
"input": "Hello",
"solution": "Hello",
"correct": true
},
{
"input": "Universe",
"solution": "World",
"correct": false
},
{
"input": "Welcome",
"solution": "Welcome",
"correct": true
}
]
}
] ],
"key": {}
}
};