Start bold term refactor
This commit is contained in:
parent
264a0e30d6
commit
9b7d1f56cd
1 changed files with 83 additions and 0 deletions
|
@ -4,6 +4,89 @@
|
|||
<code id="quiz"></code>
|
||||
|
||||
<script>
|
||||
const BoldTerms = {
|
||||
bones: {
|
||||
scapula: { // id: scapula
|
||||
asymmetric: true, // id: glenoid cavity of scapula
|
||||
features: { // articulation: glenoid cavity of scapula (head of humerus)
|
||||
"glenoid cavity": { // id: spine of scapula
|
||||
articulation: "head of humerus", // id: acromion of scapula
|
||||
}, // attachment: acromion of scapula (deltoideus)
|
||||
spine: {}, //
|
||||
acromion: { //
|
||||
attachment: "deltoideus", //
|
||||
}, //
|
||||
}, //
|
||||
}, //
|
||||
humerus: {
|
||||
asymmetric: true,
|
||||
features: {
|
||||
head: {
|
||||
articulation: "glenoid cavity",
|
||||
},
|
||||
"intertubercular groove": {},
|
||||
"greater tubercle": {},
|
||||
},
|
||||
},
|
||||
radius: {
|
||||
asymmetric: true,
|
||||
features: {
|
||||
head: {},
|
||||
"fovea capitis": {
|
||||
articulation: "capitulum of humerus",
|
||||
},
|
||||
"articular circumference": {
|
||||
articulation: "radial notch of ulna",
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
muscles: {
|
||||
"superficial pectoral": {
|
||||
features: {
|
||||
"descending pectoral": {
|
||||
origin: "cranial sternebrae",
|
||||
insertion: "greater tubercle of humerus",
|
||||
action: "adduct forelimb",
|
||||
},
|
||||
"transverse pectoral": {
|
||||
origin: "cranial sternebrae",
|
||||
insertion: "greater tubercle of humerus",
|
||||
action: "adduct forelimb",
|
||||
},
|
||||
},
|
||||
},
|
||||
"deep pectoral": {
|
||||
origin: "ventral sternum",
|
||||
insertion: "fleshy",
|
||||
action: "flex and extend shoulder joint",
|
||||
},
|
||||
brachiocephalicus: {
|
||||
features: {
|
||||
cleidobrachialis: {
|
||||
origin: "clavicle",
|
||||
insertion: "cranial border of humerus",
|
||||
action: "extend shoulder joint",
|
||||
},
|
||||
cleidocephalicus: {
|
||||
origin: "clavicle",
|
||||
insertion: "occipital bone",
|
||||
action: "extend shoulder joint",
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
joints: {
|
||||
humeral: {},
|
||||
cubiti: {},
|
||||
metacarpophalangeal: {},
|
||||
},
|
||||
other: {
|
||||
"superficial cervical lymph node": {},
|
||||
"carotid sheath": {},
|
||||
},
|
||||
};
|
||||
|
||||
const terms = [
|
||||
"scapula: glenoid cavity",
|
||||
"scapula: neck",
|
||||
|
|
Loading…
Reference in a new issue