Update help file
@@ -2,7 +2,7 @@
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net6.0</TargetFramework>
|
||||
<Version>3.0.2306.2919</Version>
|
||||
<Version>3.0.2306.3009</Version>
|
||||
<Nullable>enable</Nullable>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
</PropertyGroup>
|
||||
|
||||
@@ -234,7 +234,7 @@ div.ilc_iim_ContentPopup {
|
||||
border-style: solid;
|
||||
border-width: 2px;
|
||||
background-color: #FFFFFF;
|
||||
border-color: #A8A8A8;
|
||||
border-color: #757575;
|
||||
}
|
||||
div.ilc_qover_Correct {
|
||||
background-repeat: no-repeat;
|
||||
@@ -372,7 +372,7 @@ div.ilc_ha_ihead_HAccordIHead {
|
||||
height: auto !important;
|
||||
height: 300px;
|
||||
background-position: center 10px;
|
||||
color: #434343;
|
||||
color: #161616;
|
||||
cursor: pointer;
|
||||
background-color: #f9f9f9;
|
||||
padding-top: 13px;
|
||||
@@ -382,7 +382,7 @@ div.ilc_ha_ihead_HAccordIHead {
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
div.ilc_ha_ihead_HAccordIHead:hover {
|
||||
color: #2a2a2a;
|
||||
color: #000000;
|
||||
background-color: #FFFFD0;
|
||||
}
|
||||
div.ilc_ha_ihcap_HAccordIHeadCap {
|
||||
@@ -684,7 +684,7 @@ div.ilc_va_ihead_VAccordIHead {
|
||||
padding-bottom: 3px;
|
||||
padding-top: 3px;
|
||||
padding-left: 54px;
|
||||
color: #434343;
|
||||
color: #161616;
|
||||
}
|
||||
div.ilc_va_ihead_VAccordIHead:hover {
|
||||
background-color: #FFFFD0;
|
||||
@@ -778,12 +778,6 @@ img.ilc_page_rnavimage_RightNavigationImage {
|
||||
width: 20px;
|
||||
background-position: 0px center;
|
||||
}
|
||||
input.ilc_qsubmit_Submit {
|
||||
background-color: #708BAE;
|
||||
padding: 0.5em;
|
||||
margin-top: 20px;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
input.ilc_qinput_TextInput {
|
||||
padding-left: 4px;
|
||||
}
|
||||
@@ -825,7 +819,7 @@ span.ilc_text_inline_Emph {
|
||||
}
|
||||
span.ilc_qetcorr_ErrorTextCorrected {
|
||||
text-decoration: line-through;
|
||||
color: #757575;
|
||||
color: #6f6f6f;
|
||||
}
|
||||
span.ilc_text_inline_Important {
|
||||
text-decoration: underline;
|
||||
@@ -1066,7 +1060,7 @@ ul.ilc_qordul_OrderListHorizontal {
|
||||
list-style: none;
|
||||
}
|
||||
div.ilc_ha_iheada_HAccordIHeadActive {
|
||||
color: #434343;
|
||||
color: #161616;
|
||||
padding-right: 15px;
|
||||
padding-top: 13px;
|
||||
background-color: #f9f9f9;
|
||||
@@ -1075,7 +1069,7 @@ div.ilc_ha_iheada_HAccordIHeadActive {
|
||||
background-image: url("../../../libs/ilias/Style/basic_style/images/tree_col.svg");
|
||||
}
|
||||
div.ilc_ha_iheada_HAccordIHeadActive:hover {
|
||||
color: #2a2a2a;
|
||||
color: #000000;
|
||||
}
|
||||
div.ilc_va_iheada_VAccordIHeadActive {
|
||||
background-image: url("../../../libs/ilias/Style/basic_style/images/tree_exp.svg");
|
||||
@@ -1083,11 +1077,11 @@ div.ilc_va_iheada_VAccordIHeadActive {
|
||||
padding-top: 3px;
|
||||
font-size: 20px;
|
||||
padding-bottom: 3px;
|
||||
color: #434343;
|
||||
color: #161616;
|
||||
background-color: #f9f9f9;
|
||||
text-transform: uppercase;
|
||||
padding-right: 3px;
|
||||
}
|
||||
div.ilc_va_iheada_VAccordIHeadActive:hover {
|
||||
color: #2a2a2a;
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
@@ -396,16 +396,27 @@ il.COPagePres =
|
||||
var base, pos, mark, mx, my;
|
||||
|
||||
this.iim_marker[m.m_id] = m;
|
||||
const p = this.fixMarkerPosition;
|
||||
p(m);
|
||||
window.setTimeout(function() {
|
||||
p(m);
|
||||
}, 500);
|
||||
|
||||
},
|
||||
|
||||
fixMarkerPosition: function(m) {
|
||||
var base, pos, mark, mx, my;
|
||||
base = $("img#base_img_" + m.iim_id);
|
||||
pos = base.position();
|
||||
pos = base.offset();
|
||||
mark = $("a#" + m.m_id);
|
||||
// display the marker at the correct position
|
||||
mark.css('position', 'absolute');
|
||||
mx = parseInt(m.markx, 10);
|
||||
my = parseInt(m.marky, 10);
|
||||
mark.css('left', pos.left + mx + $("#fixed_content").scrollLeft());
|
||||
mark.css('top', pos.top + my + $("#fixed_content").scrollTop());
|
||||
mx = pos.left + parseInt(m.markx, 10);
|
||||
my = pos.top + parseInt(m.marky, 10);
|
||||
mark.css('display', '');
|
||||
il.Overlay.setX(m.m_id, mx);
|
||||
il.Overlay.setY(m.m_id, my);
|
||||
|
||||
},
|
||||
|
||||
fixMarkerPositions: function () {
|
||||
@@ -413,15 +424,7 @@ il.COPagePres =
|
||||
|
||||
for (k in il.COPagePres.iim_marker) {
|
||||
m = il.COPagePres.iim_marker[k];
|
||||
|
||||
base = $("img#base_img_" + m.iim_id);
|
||||
pos = base.position();
|
||||
mark = $("a#" + m.m_id);
|
||||
mark.css('position', 'absolute');
|
||||
mx = parseInt(m.markx, 10);
|
||||
my = parseInt(m.marky, 10);
|
||||
mark.css('left', pos.left + mx + $("#fixed_content").scrollLeft());
|
||||
mark.css('top', pos.top + my + $("#fixed_content").scrollTop());
|
||||
this.fixMarkerPosition(m);
|
||||
}
|
||||
},
|
||||
|
||||
@@ -445,8 +448,11 @@ il.COPagePres =
|
||||
bpos = base.position();
|
||||
marker = $("a#" + mark.m_id);
|
||||
mpos = marker.position();
|
||||
position = (Math.round(mpos.left) - Math.round(bpos.left)) + "," +
|
||||
(Math.round(mpos.top) - Math.round(bpos.top));
|
||||
//position = (Math.round(mpos.left) - Math.round(bpos.left)) + "," +
|
||||
// (Math.round(mpos.top) - Math.round(bpos.top));
|
||||
position = (Math.round(marker.offset().left) - Math.round(base.offset().left)) + "," +
|
||||
(Math.round(marker.offset().top) - Math.round(base.offset().top));
|
||||
|
||||
$("input#markpos_" + mark.tr_nr).attr("value", position);
|
||||
}
|
||||
});
|
||||
@@ -485,13 +491,13 @@ il.COPagePres =
|
||||
il.COPagePres.initDragToolbar();
|
||||
|
||||
base = $("img#base_img_" + dtr.iim_id);
|
||||
bpos = base.position();
|
||||
ovx = parseInt(dtr.ovx, 10);
|
||||
ovy = parseInt(dtr.ovy, 10);
|
||||
ov.css('left', bpos.left + ovx + $("#fixed_content").scrollLeft());
|
||||
ov.css('top', bpos.top + ovy + $("#fixed_content").scrollTop());
|
||||
bpos = base.offset();
|
||||
ovx = bpos.left + parseInt(dtr.ovx, 10);
|
||||
ovy = bpos.top + parseInt(dtr.ovy, 10);
|
||||
ov.css('display', '');
|
||||
ov.css("position", "absolute");
|
||||
il.Overlay.setX("iim_ov_" + dtr.tr_id, ovx);
|
||||
il.Overlay.setY("iim_ov_" + dtr.tr_id, ovy);
|
||||
|
||||
dtr = trigger;
|
||||
ov.draggable({
|
||||
@@ -539,17 +545,18 @@ il.COPagePres =
|
||||
il.COPagePres.initDragToolbar();
|
||||
|
||||
base = $("img#base_img_" + cpop.iim_id);
|
||||
bpos = base.position();
|
||||
bpos = base.offset();
|
||||
//console.log(dtr);
|
||||
popx = parseInt(dtr.popx, 10);
|
||||
popy = parseInt(dtr.popy, 10);
|
||||
popx = bpos.left + parseInt(dtr.popx, 10);
|
||||
popy = bpos.top + parseInt(dtr.popy, 10);
|
||||
pdummy.css("position", "absolute");
|
||||
pdummy.css('left', bpos.left + popx + $("#fixed_content").scrollLeft());
|
||||
pdummy.css('top', bpos.top + popy + $("#fixed_content").scrollTop());
|
||||
pdummy.css('width', dtr.popwidth);
|
||||
pdummy.css('height', dtr.popheight);
|
||||
pdummy.css('display', '');
|
||||
|
||||
il.Overlay.setX("popupdummy", popx);
|
||||
il.Overlay.setY("popupdummy", popy);
|
||||
|
||||
|
||||
pdummy.draggable({
|
||||
stop: function(event, ui) {
|
||||
var pdpos, position;
|
||||
|
||||
@@ -0,0 +1,26 @@
|
||||
/**
|
||||
* This fixes the responsive behaviour of the players
|
||||
* in the ILIAS grid. It appears (ILIAS 7) when the window
|
||||
* gets narrower (getting wider worked without workaround)
|
||||
* see https://mantis.ilias.de/view.php?id=32162
|
||||
*/
|
||||
window.addEventListener('resize', (event) => {
|
||||
if (mejs && mejs.players) {
|
||||
let modifiedPlayers = [];
|
||||
for (const [key, player] of Object.entries(mejs.players)) {
|
||||
//console.log(`${key}: ${player}`);
|
||||
// reduce all players with stretching set to "auto" to 1x1 size
|
||||
if (player.options.stretching == 'auto') {
|
||||
player.options.stretching = 'none';
|
||||
player.setPlayerSize(1, 1);
|
||||
modifiedPlayers.push(player);
|
||||
}
|
||||
}
|
||||
// now for the modified players, set stretching back to auto
|
||||
// and trigger the responsive resizing
|
||||
modifiedPlayers.forEach((player, key) => {
|
||||
player.options.stretching = 'auto';
|
||||
player.setPlayerSize();
|
||||
});
|
||||
}
|
||||
});
|
||||
@@ -0,0 +1,98 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en" dir="ltr" class="ilc_Fullscreen" style="overflow: visible;">
|
||||
<head>
|
||||
<title>Egalware </title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<link rel="stylesheet" type="text/css" href="" />
|
||||
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery/dist/jquery.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-11-2022-06-29"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify-jquery.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/maphilight/jquery.maphilight.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/COPage/js/ilCOPagePres.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/Link/js/ilExtLink.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/MediaObjects/js/MediaElementHelper.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
|
||||
|
||||
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilAssMultipleChoice.js"></script>
|
||||
|
||||
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilMatchingQuestion.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/Accordion/js/accordion.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/owl.carousel/dist/owl.carousel.min.js"></script>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$Id$" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/placeholder.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Modules/TestQuestionPool/templates/default/test_javascript.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
|
||||
|
||||
</head>
|
||||
<body class="ilc_Fullscreen" style="overflow: visible;">
|
||||
|
||||
<table class = "ilc_Fullscreen"><tr><td valign="middle">
|
||||
|
||||
<div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_1353/FerieMalattie_1_.png"/></div></figure></div>
|
||||
|
||||
|
||||
</td></tr></table>
|
||||
|
||||
<script type="text/javascript">
|
||||
il.Util.addOnLoad(function() {
|
||||
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
|
||||
|
||||
ilias.questions.txt.wrong_answers = "Incorrect Items";
|
||||
ilias.questions.txt.wrong_answers_single = "Incorrect Choice.";
|
||||
ilias.questions.txt.tries_remaining = "Tries Remaining";
|
||||
ilias.questions.txt.please_try_again = "Please try again!";
|
||||
ilias.questions.txt.all_answers_correct = "Correct!";
|
||||
ilias.questions.txt.enough_answers_correct = "Correct, but not the best solution!";
|
||||
ilias.questions.txt.nr_of_tries_exceeded = "Number of tries exceeded.";
|
||||
ilias.questions.txt.correct_answers_shown = "Correct solution see above.";
|
||||
ilias.questions.txt.correct_answers_also = "Also correct are:";
|
||||
ilias.questions.txt.correct_answer_also = "Also correct is:";
|
||||
ilias.questions.txt.ov_all_correct = "You have correctly answered all questions.";
|
||||
ilias.questions.txt.ov_some_correct = "You have correctly answered [x] out of [y] questions.";
|
||||
ilias.questions.txt.ov_wrong_answered = "The following questions were not answered or answered wrong";
|
||||
ilias.questions.txt.please_select = "please select";
|
||||
ilias.questions.txt.ov_preview = "The question overview does not work in the page editor context. Use the SCO or SCORM level preview instead.";
|
||||
ilias.questions.txt.submit_answers = "Submit";
|
||||
ilias.questions.refresh_lang();
|
||||
il.COPagePres.updateQuestionOverviews();
|
||||
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
|
||||
|
||||
});
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,98 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en" dir="ltr" class="ilc_Fullscreen" style="overflow: visible;">
|
||||
<head>
|
||||
<title>Egalware </title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<link rel="stylesheet" type="text/css" href="" />
|
||||
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery/dist/jquery.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-11-2022-06-29"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify-jquery.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/maphilight/jquery.maphilight.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/COPage/js/ilCOPagePres.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/Link/js/ilExtLink.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/MediaObjects/js/MediaElementHelper.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
|
||||
|
||||
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilAssMultipleChoice.js"></script>
|
||||
|
||||
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilMatchingQuestion.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/Accordion/js/accordion.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/owl.carousel/dist/owl.carousel.min.js"></script>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$Id$" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/placeholder.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Modules/TestQuestionPool/templates/default/test_javascript.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
|
||||
|
||||
</head>
|
||||
<body class="ilc_Fullscreen" style="overflow: visible;">
|
||||
|
||||
<table class = "ilc_Fullscreen"><tr><td valign="middle">
|
||||
|
||||
<div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_1354/FerieMalattie_2_.png"/></div></figure></div>
|
||||
|
||||
|
||||
</td></tr></table>
|
||||
|
||||
<script type="text/javascript">
|
||||
il.Util.addOnLoad(function() {
|
||||
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
|
||||
|
||||
ilias.questions.txt.wrong_answers = "Incorrect Items";
|
||||
ilias.questions.txt.wrong_answers_single = "Incorrect Choice.";
|
||||
ilias.questions.txt.tries_remaining = "Tries Remaining";
|
||||
ilias.questions.txt.please_try_again = "Please try again!";
|
||||
ilias.questions.txt.all_answers_correct = "Correct!";
|
||||
ilias.questions.txt.enough_answers_correct = "Correct, but not the best solution!";
|
||||
ilias.questions.txt.nr_of_tries_exceeded = "Number of tries exceeded.";
|
||||
ilias.questions.txt.correct_answers_shown = "Correct solution see above.";
|
||||
ilias.questions.txt.correct_answers_also = "Also correct are:";
|
||||
ilias.questions.txt.correct_answer_also = "Also correct is:";
|
||||
ilias.questions.txt.ov_all_correct = "You have correctly answered all questions.";
|
||||
ilias.questions.txt.ov_some_correct = "You have correctly answered [x] out of [y] questions.";
|
||||
ilias.questions.txt.ov_wrong_answered = "The following questions were not answered or answered wrong";
|
||||
ilias.questions.txt.please_select = "please select";
|
||||
ilias.questions.txt.ov_preview = "The question overview does not work in the page editor context. Use the SCO or SCORM level preview instead.";
|
||||
ilias.questions.txt.submit_answers = "Submit";
|
||||
ilias.questions.refresh_lang();
|
||||
il.COPagePres.updateQuestionOverviews();
|
||||
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
|
||||
|
||||
});
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,98 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en" dir="ltr" class="ilc_Fullscreen" style="overflow: visible;">
|
||||
<head>
|
||||
<title>Egalware </title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<link rel="stylesheet" type="text/css" href="" />
|
||||
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery/dist/jquery.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-11-2022-06-29"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify-jquery.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/maphilight/jquery.maphilight.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/COPage/js/ilCOPagePres.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/Link/js/ilExtLink.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/MediaObjects/js/MediaElementHelper.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
|
||||
|
||||
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilAssMultipleChoice.js"></script>
|
||||
|
||||
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilMatchingQuestion.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/Accordion/js/accordion.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/owl.carousel/dist/owl.carousel.min.js"></script>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$Id$" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/placeholder.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Modules/TestQuestionPool/templates/default/test_javascript.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
|
||||
|
||||
</head>
|
||||
<body class="ilc_Fullscreen" style="overflow: visible;">
|
||||
|
||||
<table class = "ilc_Fullscreen"><tr><td valign="middle">
|
||||
|
||||
<div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_1355/FerieMalattie_4_.png"/></div></figure></div>
|
||||
|
||||
|
||||
</td></tr></table>
|
||||
|
||||
<script type="text/javascript">
|
||||
il.Util.addOnLoad(function() {
|
||||
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
|
||||
|
||||
ilias.questions.txt.wrong_answers = "Incorrect Items";
|
||||
ilias.questions.txt.wrong_answers_single = "Incorrect Choice.";
|
||||
ilias.questions.txt.tries_remaining = "Tries Remaining";
|
||||
ilias.questions.txt.please_try_again = "Please try again!";
|
||||
ilias.questions.txt.all_answers_correct = "Correct!";
|
||||
ilias.questions.txt.enough_answers_correct = "Correct, but not the best solution!";
|
||||
ilias.questions.txt.nr_of_tries_exceeded = "Number of tries exceeded.";
|
||||
ilias.questions.txt.correct_answers_shown = "Correct solution see above.";
|
||||
ilias.questions.txt.correct_answers_also = "Also correct are:";
|
||||
ilias.questions.txt.correct_answer_also = "Also correct is:";
|
||||
ilias.questions.txt.ov_all_correct = "You have correctly answered all questions.";
|
||||
ilias.questions.txt.ov_some_correct = "You have correctly answered [x] out of [y] questions.";
|
||||
ilias.questions.txt.ov_wrong_answered = "The following questions were not answered or answered wrong";
|
||||
ilias.questions.txt.please_select = "please select";
|
||||
ilias.questions.txt.ov_preview = "The question overview does not work in the page editor context. Use the SCO or SCORM level preview instead.";
|
||||
ilias.questions.txt.submit_answers = "Submit";
|
||||
ilias.questions.refresh_lang();
|
||||
il.COPagePres.updateQuestionOverviews();
|
||||
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
|
||||
|
||||
});
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,98 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en" dir="ltr" class="ilc_Fullscreen" style="overflow: visible;">
|
||||
<head>
|
||||
<title>Egalware </title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<link rel="stylesheet" type="text/css" href="" />
|
||||
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery/dist/jquery.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-11-2022-06-29"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify-jquery.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/maphilight/jquery.maphilight.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/COPage/js/ilCOPagePres.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/Link/js/ilExtLink.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/MediaObjects/js/MediaElementHelper.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
|
||||
|
||||
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilAssMultipleChoice.js"></script>
|
||||
|
||||
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilMatchingQuestion.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/Accordion/js/accordion.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/owl.carousel/dist/owl.carousel.min.js"></script>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$Id$" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/placeholder.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Modules/TestQuestionPool/templates/default/test_javascript.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
|
||||
|
||||
</head>
|
||||
<body class="ilc_Fullscreen" style="overflow: visible;">
|
||||
|
||||
<table class = "ilc_Fullscreen"><tr><td valign="middle">
|
||||
|
||||
<div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_1356/FerieMalattie_5_.png"/></div></figure></div>
|
||||
|
||||
|
||||
</td></tr></table>
|
||||
|
||||
<script type="text/javascript">
|
||||
il.Util.addOnLoad(function() {
|
||||
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
|
||||
|
||||
ilias.questions.txt.wrong_answers = "Incorrect Items";
|
||||
ilias.questions.txt.wrong_answers_single = "Incorrect Choice.";
|
||||
ilias.questions.txt.tries_remaining = "Tries Remaining";
|
||||
ilias.questions.txt.please_try_again = "Please try again!";
|
||||
ilias.questions.txt.all_answers_correct = "Correct!";
|
||||
ilias.questions.txt.enough_answers_correct = "Correct, but not the best solution!";
|
||||
ilias.questions.txt.nr_of_tries_exceeded = "Number of tries exceeded.";
|
||||
ilias.questions.txt.correct_answers_shown = "Correct solution see above.";
|
||||
ilias.questions.txt.correct_answers_also = "Also correct are:";
|
||||
ilias.questions.txt.correct_answer_also = "Also correct is:";
|
||||
ilias.questions.txt.ov_all_correct = "You have correctly answered all questions.";
|
||||
ilias.questions.txt.ov_some_correct = "You have correctly answered [x] out of [y] questions.";
|
||||
ilias.questions.txt.ov_wrong_answered = "The following questions were not answered or answered wrong";
|
||||
ilias.questions.txt.please_select = "please select";
|
||||
ilias.questions.txt.ov_preview = "The question overview does not work in the page editor context. Use the SCO or SCORM level preview instead.";
|
||||
ilias.questions.txt.submit_answers = "Submit";
|
||||
ilias.questions.refresh_lang();
|
||||
il.COPagePres.updateQuestionOverviews();
|
||||
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
|
||||
|
||||
});
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,98 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en" dir="ltr" class="ilc_Fullscreen" style="overflow: visible;">
|
||||
<head>
|
||||
<title>Egalware </title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<link rel="stylesheet" type="text/css" href="" />
|
||||
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery/dist/jquery.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-11-2022-06-29"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify-jquery.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/maphilight/jquery.maphilight.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/COPage/js/ilCOPagePres.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/Link/js/ilExtLink.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/MediaObjects/js/MediaElementHelper.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
|
||||
|
||||
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilAssMultipleChoice.js"></script>
|
||||
|
||||
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilMatchingQuestion.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/Accordion/js/accordion.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/owl.carousel/dist/owl.carousel.min.js"></script>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$Id$" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/placeholder.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Modules/TestQuestionPool/templates/default/test_javascript.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
|
||||
|
||||
</head>
|
||||
<body class="ilc_Fullscreen" style="overflow: visible;">
|
||||
|
||||
<table class = "ilc_Fullscreen"><tr><td valign="middle">
|
||||
|
||||
<div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_1358/FerieMalattie_3_.png"/></div></figure></div>
|
||||
|
||||
|
||||
</td></tr></table>
|
||||
|
||||
<script type="text/javascript">
|
||||
il.Util.addOnLoad(function() {
|
||||
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
|
||||
|
||||
ilias.questions.txt.wrong_answers = "Incorrect Items";
|
||||
ilias.questions.txt.wrong_answers_single = "Incorrect Choice.";
|
||||
ilias.questions.txt.tries_remaining = "Tries Remaining";
|
||||
ilias.questions.txt.please_try_again = "Please try again!";
|
||||
ilias.questions.txt.all_answers_correct = "Correct!";
|
||||
ilias.questions.txt.enough_answers_correct = "Correct, but not the best solution!";
|
||||
ilias.questions.txt.nr_of_tries_exceeded = "Number of tries exceeded.";
|
||||
ilias.questions.txt.correct_answers_shown = "Correct solution see above.";
|
||||
ilias.questions.txt.correct_answers_also = "Also correct are:";
|
||||
ilias.questions.txt.correct_answer_also = "Also correct is:";
|
||||
ilias.questions.txt.ov_all_correct = "You have correctly answered all questions.";
|
||||
ilias.questions.txt.ov_some_correct = "You have correctly answered [x] out of [y] questions.";
|
||||
ilias.questions.txt.ov_wrong_answered = "The following questions were not answered or answered wrong";
|
||||
ilias.questions.txt.please_select = "please select";
|
||||
ilias.questions.txt.ov_preview = "The question overview does not work in the page editor context. Use the SCO or SCORM level preview instead.";
|
||||
ilias.questions.txt.submit_answers = "Submit";
|
||||
ilias.questions.refresh_lang();
|
||||
il.COPagePres.updateQuestionOverviews();
|
||||
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
|
||||
|
||||
});
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,98 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en" dir="ltr" class="ilc_Fullscreen" style="overflow: visible;">
|
||||
<head>
|
||||
<title>Egalware </title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<link rel="stylesheet" type="text/css" href="" />
|
||||
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery/dist/jquery.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-11-2022-06-29"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify-jquery.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/maphilight/jquery.maphilight.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/COPage/js/ilCOPagePres.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/Link/js/ilExtLink.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/MediaObjects/js/MediaElementHelper.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
|
||||
|
||||
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilAssMultipleChoice.js"></script>
|
||||
|
||||
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilMatchingQuestion.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/Accordion/js/accordion.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/owl.carousel/dist/owl.carousel.min.js"></script>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$Id$" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/placeholder.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Modules/TestQuestionPool/templates/default/test_javascript.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
|
||||
|
||||
</head>
|
||||
<body class="ilc_Fullscreen" style="overflow: visible;">
|
||||
|
||||
<table class = "ilc_Fullscreen"><tr><td valign="middle">
|
||||
|
||||
<div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_1359/Malattia_1_.png"/></div></figure></div>
|
||||
|
||||
|
||||
</td></tr></table>
|
||||
|
||||
<script type="text/javascript">
|
||||
il.Util.addOnLoad(function() {
|
||||
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
|
||||
|
||||
ilias.questions.txt.wrong_answers = "Incorrect Items";
|
||||
ilias.questions.txt.wrong_answers_single = "Incorrect Choice.";
|
||||
ilias.questions.txt.tries_remaining = "Tries Remaining";
|
||||
ilias.questions.txt.please_try_again = "Please try again!";
|
||||
ilias.questions.txt.all_answers_correct = "Correct!";
|
||||
ilias.questions.txt.enough_answers_correct = "Correct, but not the best solution!";
|
||||
ilias.questions.txt.nr_of_tries_exceeded = "Number of tries exceeded.";
|
||||
ilias.questions.txt.correct_answers_shown = "Correct solution see above.";
|
||||
ilias.questions.txt.correct_answers_also = "Also correct are:";
|
||||
ilias.questions.txt.correct_answer_also = "Also correct is:";
|
||||
ilias.questions.txt.ov_all_correct = "You have correctly answered all questions.";
|
||||
ilias.questions.txt.ov_some_correct = "You have correctly answered [x] out of [y] questions.";
|
||||
ilias.questions.txt.ov_wrong_answered = "The following questions were not answered or answered wrong";
|
||||
ilias.questions.txt.please_select = "please select";
|
||||
ilias.questions.txt.ov_preview = "The question overview does not work in the page editor context. Use the SCO or SCORM level preview instead.";
|
||||
ilias.questions.txt.submit_answers = "Submit";
|
||||
ilias.questions.refresh_lang();
|
||||
il.COPagePres.updateQuestionOverviews();
|
||||
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
|
||||
|
||||
});
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,98 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en" dir="ltr" class="ilc_Fullscreen" style="overflow: visible;">
|
||||
<head>
|
||||
<title>Egalware </title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<link rel="stylesheet" type="text/css" href="" />
|
||||
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery/dist/jquery.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-11-2022-06-29"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify-jquery.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/maphilight/jquery.maphilight.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/COPage/js/ilCOPagePres.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/Link/js/ilExtLink.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/MediaObjects/js/MediaElementHelper.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
|
||||
|
||||
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilAssMultipleChoice.js"></script>
|
||||
|
||||
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilMatchingQuestion.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/Accordion/js/accordion.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/owl.carousel/dist/owl.carousel.min.js"></script>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$Id$" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/placeholder.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Modules/TestQuestionPool/templates/default/test_javascript.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
|
||||
|
||||
</head>
|
||||
<body class="ilc_Fullscreen" style="overflow: visible;">
|
||||
|
||||
<table class = "ilc_Fullscreen"><tr><td valign="middle">
|
||||
|
||||
<div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_1360/Malattia_2_.png"/></div></figure></div>
|
||||
|
||||
|
||||
</td></tr></table>
|
||||
|
||||
<script type="text/javascript">
|
||||
il.Util.addOnLoad(function() {
|
||||
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
|
||||
|
||||
ilias.questions.txt.wrong_answers = "Incorrect Items";
|
||||
ilias.questions.txt.wrong_answers_single = "Incorrect Choice.";
|
||||
ilias.questions.txt.tries_remaining = "Tries Remaining";
|
||||
ilias.questions.txt.please_try_again = "Please try again!";
|
||||
ilias.questions.txt.all_answers_correct = "Correct!";
|
||||
ilias.questions.txt.enough_answers_correct = "Correct, but not the best solution!";
|
||||
ilias.questions.txt.nr_of_tries_exceeded = "Number of tries exceeded.";
|
||||
ilias.questions.txt.correct_answers_shown = "Correct solution see above.";
|
||||
ilias.questions.txt.correct_answers_also = "Also correct are:";
|
||||
ilias.questions.txt.correct_answer_also = "Also correct is:";
|
||||
ilias.questions.txt.ov_all_correct = "You have correctly answered all questions.";
|
||||
ilias.questions.txt.ov_some_correct = "You have correctly answered [x] out of [y] questions.";
|
||||
ilias.questions.txt.ov_wrong_answered = "The following questions were not answered or answered wrong";
|
||||
ilias.questions.txt.please_select = "please select";
|
||||
ilias.questions.txt.ov_preview = "The question overview does not work in the page editor context. Use the SCO or SCORM level preview instead.";
|
||||
ilias.questions.txt.submit_answers = "Submit";
|
||||
ilias.questions.refresh_lang();
|
||||
il.COPagePres.updateQuestionOverviews();
|
||||
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
|
||||
|
||||
});
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,98 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en" dir="ltr" class="ilc_Fullscreen" style="overflow: visible;">
|
||||
<head>
|
||||
<title>Egalware </title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<link rel="stylesheet" type="text/css" href="" />
|
||||
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery/dist/jquery.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-11-2022-06-29"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify-jquery.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/maphilight/jquery.maphilight.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/COPage/js/ilCOPagePres.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/Link/js/ilExtLink.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/MediaObjects/js/MediaElementHelper.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
|
||||
|
||||
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilAssMultipleChoice.js"></script>
|
||||
|
||||
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilMatchingQuestion.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/Accordion/js/accordion.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/owl.carousel/dist/owl.carousel.min.js"></script>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$Id$" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/placeholder.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Modules/TestQuestionPool/templates/default/test_javascript.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
|
||||
|
||||
</head>
|
||||
<body class="ilc_Fullscreen" style="overflow: visible;">
|
||||
|
||||
<table class = "ilc_Fullscreen"><tr><td valign="middle">
|
||||
|
||||
<div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_1361/Malattia_3_.png"/></div></figure></div>
|
||||
|
||||
|
||||
</td></tr></table>
|
||||
|
||||
<script type="text/javascript">
|
||||
il.Util.addOnLoad(function() {
|
||||
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
|
||||
|
||||
ilias.questions.txt.wrong_answers = "Incorrect Items";
|
||||
ilias.questions.txt.wrong_answers_single = "Incorrect Choice.";
|
||||
ilias.questions.txt.tries_remaining = "Tries Remaining";
|
||||
ilias.questions.txt.please_try_again = "Please try again!";
|
||||
ilias.questions.txt.all_answers_correct = "Correct!";
|
||||
ilias.questions.txt.enough_answers_correct = "Correct, but not the best solution!";
|
||||
ilias.questions.txt.nr_of_tries_exceeded = "Number of tries exceeded.";
|
||||
ilias.questions.txt.correct_answers_shown = "Correct solution see above.";
|
||||
ilias.questions.txt.correct_answers_also = "Also correct are:";
|
||||
ilias.questions.txt.correct_answer_also = "Also correct is:";
|
||||
ilias.questions.txt.ov_all_correct = "You have correctly answered all questions.";
|
||||
ilias.questions.txt.ov_some_correct = "You have correctly answered [x] out of [y] questions.";
|
||||
ilias.questions.txt.ov_wrong_answered = "The following questions were not answered or answered wrong";
|
||||
ilias.questions.txt.please_select = "please select";
|
||||
ilias.questions.txt.ov_preview = "The question overview does not work in the page editor context. Use the SCO or SCORM level preview instead.";
|
||||
ilias.questions.txt.submit_answers = "Submit";
|
||||
ilias.questions.refresh_lang();
|
||||
il.COPagePres.updateQuestionOverviews();
|
||||
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
|
||||
|
||||
});
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,98 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en" dir="ltr" class="ilc_Fullscreen" style="overflow: visible;">
|
||||
<head>
|
||||
<title>Egalware </title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<link rel="stylesheet" type="text/css" href="" />
|
||||
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery/dist/jquery.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-11-2022-06-29"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify-jquery.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/maphilight/jquery.maphilight.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/COPage/js/ilCOPagePres.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/Link/js/ilExtLink.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/MediaObjects/js/MediaElementHelper.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
|
||||
|
||||
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilAssMultipleChoice.js"></script>
|
||||
|
||||
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilMatchingQuestion.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/Accordion/js/accordion.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/owl.carousel/dist/owl.carousel.min.js"></script>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$Id$" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/placeholder.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Modules/TestQuestionPool/templates/default/test_javascript.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
|
||||
|
||||
</head>
|
||||
<body class="ilc_Fullscreen" style="overflow: visible;">
|
||||
|
||||
<table class = "ilc_Fullscreen"><tr><td valign="middle">
|
||||
|
||||
<div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_1362/Malattia_4_.png"/></div></figure></div>
|
||||
|
||||
|
||||
</td></tr></table>
|
||||
|
||||
<script type="text/javascript">
|
||||
il.Util.addOnLoad(function() {
|
||||
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
|
||||
|
||||
ilias.questions.txt.wrong_answers = "Incorrect Items";
|
||||
ilias.questions.txt.wrong_answers_single = "Incorrect Choice.";
|
||||
ilias.questions.txt.tries_remaining = "Tries Remaining";
|
||||
ilias.questions.txt.please_try_again = "Please try again!";
|
||||
ilias.questions.txt.all_answers_correct = "Correct!";
|
||||
ilias.questions.txt.enough_answers_correct = "Correct, but not the best solution!";
|
||||
ilias.questions.txt.nr_of_tries_exceeded = "Number of tries exceeded.";
|
||||
ilias.questions.txt.correct_answers_shown = "Correct solution see above.";
|
||||
ilias.questions.txt.correct_answers_also = "Also correct are:";
|
||||
ilias.questions.txt.correct_answer_also = "Also correct is:";
|
||||
ilias.questions.txt.ov_all_correct = "You have correctly answered all questions.";
|
||||
ilias.questions.txt.ov_some_correct = "You have correctly answered [x] out of [y] questions.";
|
||||
ilias.questions.txt.ov_wrong_answered = "The following questions were not answered or answered wrong";
|
||||
ilias.questions.txt.please_select = "please select";
|
||||
ilias.questions.txt.ov_preview = "The question overview does not work in the page editor context. Use the SCO or SCORM level preview instead.";
|
||||
ilias.questions.txt.submit_answers = "Submit";
|
||||
ilias.questions.refresh_lang();
|
||||
il.COPagePres.updateQuestionOverviews();
|
||||
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
|
||||
|
||||
});
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,98 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en" dir="ltr" class="ilc_Fullscreen" style="overflow: visible;">
|
||||
<head>
|
||||
<title>Egalware </title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<link rel="stylesheet" type="text/css" href="" />
|
||||
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery/dist/jquery.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-11-2022-06-29"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify-jquery.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/maphilight/jquery.maphilight.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/COPage/js/ilCOPagePres.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/Link/js/ilExtLink.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/MediaObjects/js/MediaElementHelper.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
|
||||
|
||||
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilAssMultipleChoice.js"></script>
|
||||
|
||||
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilMatchingQuestion.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/Accordion/js/accordion.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/owl.carousel/dist/owl.carousel.min.js"></script>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$Id$" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/placeholder.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Modules/TestQuestionPool/templates/default/test_javascript.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
|
||||
|
||||
</head>
|
||||
<body class="ilc_Fullscreen" style="overflow: visible;">
|
||||
|
||||
<table class = "ilc_Fullscreen"><tr><td valign="middle">
|
||||
|
||||
<div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_1419/chrome_F9nxfTTudd.png"/></div></figure></div>
|
||||
|
||||
|
||||
</td></tr></table>
|
||||
|
||||
<script type="text/javascript">
|
||||
il.Util.addOnLoad(function() {
|
||||
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
|
||||
|
||||
ilias.questions.txt.wrong_answers = "Incorrect Items";
|
||||
ilias.questions.txt.wrong_answers_single = "Incorrect Choice.";
|
||||
ilias.questions.txt.tries_remaining = "Tries Remaining";
|
||||
ilias.questions.txt.please_try_again = "Please try again!";
|
||||
ilias.questions.txt.all_answers_correct = "Correct!";
|
||||
ilias.questions.txt.enough_answers_correct = "Correct, but not the best solution!";
|
||||
ilias.questions.txt.nr_of_tries_exceeded = "Number of tries exceeded.";
|
||||
ilias.questions.txt.correct_answers_shown = "Correct solution see above.";
|
||||
ilias.questions.txt.correct_answers_also = "Also correct are:";
|
||||
ilias.questions.txt.correct_answer_also = "Also correct is:";
|
||||
ilias.questions.txt.ov_all_correct = "You have correctly answered all questions.";
|
||||
ilias.questions.txt.ov_some_correct = "You have correctly answered [x] out of [y] questions.";
|
||||
ilias.questions.txt.ov_wrong_answered = "The following questions were not answered or answered wrong";
|
||||
ilias.questions.txt.please_select = "please select";
|
||||
ilias.questions.txt.ov_preview = "The question overview does not work in the page editor context. Use the SCO or SCORM level preview instead.";
|
||||
ilias.questions.txt.submit_answers = "Submit";
|
||||
ilias.questions.refresh_lang();
|
||||
il.COPagePres.updateQuestionOverviews();
|
||||
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
|
||||
|
||||
});
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,98 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en" dir="ltr" class="ilc_Fullscreen" style="overflow: visible;">
|
||||
<head>
|
||||
<title>Egalware </title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<link rel="stylesheet" type="text/css" href="" />
|
||||
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery/dist/jquery.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-11-2022-06-29"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify-jquery.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/maphilight/jquery.maphilight.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/COPage/js/ilCOPagePres.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/Link/js/ilExtLink.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/MediaObjects/js/MediaElementHelper.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
|
||||
|
||||
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilAssMultipleChoice.js"></script>
|
||||
|
||||
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilMatchingQuestion.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/Accordion/js/accordion.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/owl.carousel/dist/owl.carousel.min.js"></script>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$Id$" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/placeholder.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Modules/TestQuestionPool/templates/default/test_javascript.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
|
||||
|
||||
</head>
|
||||
<body class="ilc_Fullscreen" style="overflow: visible;">
|
||||
|
||||
<table class = "ilc_Fullscreen"><tr><td valign="middle">
|
||||
|
||||
<div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_1420/chrome_lTbi4lpidh.png"/></div></figure></div>
|
||||
|
||||
|
||||
</td></tr></table>
|
||||
|
||||
<script type="text/javascript">
|
||||
il.Util.addOnLoad(function() {
|
||||
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
|
||||
|
||||
ilias.questions.txt.wrong_answers = "Incorrect Items";
|
||||
ilias.questions.txt.wrong_answers_single = "Incorrect Choice.";
|
||||
ilias.questions.txt.tries_remaining = "Tries Remaining";
|
||||
ilias.questions.txt.please_try_again = "Please try again!";
|
||||
ilias.questions.txt.all_answers_correct = "Correct!";
|
||||
ilias.questions.txt.enough_answers_correct = "Correct, but not the best solution!";
|
||||
ilias.questions.txt.nr_of_tries_exceeded = "Number of tries exceeded.";
|
||||
ilias.questions.txt.correct_answers_shown = "Correct solution see above.";
|
||||
ilias.questions.txt.correct_answers_also = "Also correct are:";
|
||||
ilias.questions.txt.correct_answer_also = "Also correct is:";
|
||||
ilias.questions.txt.ov_all_correct = "You have correctly answered all questions.";
|
||||
ilias.questions.txt.ov_some_correct = "You have correctly answered [x] out of [y] questions.";
|
||||
ilias.questions.txt.ov_wrong_answered = "The following questions were not answered or answered wrong";
|
||||
ilias.questions.txt.please_select = "please select";
|
||||
ilias.questions.txt.ov_preview = "The question overview does not work in the page editor context. Use the SCO or SCORM level preview instead.";
|
||||
ilias.questions.txt.submit_answers = "Submit";
|
||||
ilias.questions.refresh_lang();
|
||||
il.COPagePres.updateQuestionOverviews();
|
||||
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
|
||||
|
||||
});
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,98 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en" dir="ltr" class="ilc_Fullscreen" style="overflow: visible;">
|
||||
<head>
|
||||
<title>Egalware </title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<link rel="stylesheet" type="text/css" href="" />
|
||||
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery/dist/jquery.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-11-2022-06-29"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify-jquery.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/maphilight/jquery.maphilight.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/COPage/js/ilCOPagePres.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/Link/js/ilExtLink.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/MediaObjects/js/MediaElementHelper.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
|
||||
|
||||
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilAssMultipleChoice.js"></script>
|
||||
|
||||
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilMatchingQuestion.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/Accordion/js/accordion.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/owl.carousel/dist/owl.carousel.min.js"></script>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$Id$" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/placeholder.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Modules/TestQuestionPool/templates/default/test_javascript.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
|
||||
|
||||
</head>
|
||||
<body class="ilc_Fullscreen" style="overflow: visible;">
|
||||
|
||||
<table class = "ilc_Fullscreen"><tr><td valign="middle">
|
||||
|
||||
<div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_1422/MyReport3.png"/></div></figure></div>
|
||||
|
||||
|
||||
</td></tr></table>
|
||||
|
||||
<script type="text/javascript">
|
||||
il.Util.addOnLoad(function() {
|
||||
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
|
||||
|
||||
ilias.questions.txt.wrong_answers = "Incorrect Items";
|
||||
ilias.questions.txt.wrong_answers_single = "Incorrect Choice.";
|
||||
ilias.questions.txt.tries_remaining = "Tries Remaining";
|
||||
ilias.questions.txt.please_try_again = "Please try again!";
|
||||
ilias.questions.txt.all_answers_correct = "Correct!";
|
||||
ilias.questions.txt.enough_answers_correct = "Correct, but not the best solution!";
|
||||
ilias.questions.txt.nr_of_tries_exceeded = "Number of tries exceeded.";
|
||||
ilias.questions.txt.correct_answers_shown = "Correct solution see above.";
|
||||
ilias.questions.txt.correct_answers_also = "Also correct are:";
|
||||
ilias.questions.txt.correct_answer_also = "Also correct is:";
|
||||
ilias.questions.txt.ov_all_correct = "You have correctly answered all questions.";
|
||||
ilias.questions.txt.ov_some_correct = "You have correctly answered [x] out of [y] questions.";
|
||||
ilias.questions.txt.ov_wrong_answered = "The following questions were not answered or answered wrong";
|
||||
ilias.questions.txt.please_select = "please select";
|
||||
ilias.questions.txt.ov_preview = "The question overview does not work in the page editor context. Use the SCO or SCORM level preview instead.";
|
||||
ilias.questions.txt.submit_answers = "Submit";
|
||||
ilias.questions.refresh_lang();
|
||||
il.COPagePres.updateQuestionOverviews();
|
||||
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
|
||||
|
||||
});
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,98 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en" dir="ltr" class="ilc_Fullscreen" style="overflow: visible;">
|
||||
<head>
|
||||
<title>Egalware </title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<link rel="stylesheet" type="text/css" href="" />
|
||||
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery/dist/jquery.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-11-2022-06-29"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify-jquery.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/maphilight/jquery.maphilight.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/COPage/js/ilCOPagePres.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/Link/js/ilExtLink.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/MediaObjects/js/MediaElementHelper.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
|
||||
|
||||
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilAssMultipleChoice.js"></script>
|
||||
|
||||
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilMatchingQuestion.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/Accordion/js/accordion.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/owl.carousel/dist/owl.carousel.min.js"></script>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$Id$" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/placeholder.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Modules/TestQuestionPool/templates/default/test_javascript.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
|
||||
|
||||
</head>
|
||||
<body class="ilc_Fullscreen" style="overflow: visible;">
|
||||
|
||||
<table class = "ilc_Fullscreen"><tr><td valign="middle">
|
||||
|
||||
<div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_1423/MyReport2.png"/></div></figure></div>
|
||||
|
||||
|
||||
</td></tr></table>
|
||||
|
||||
<script type="text/javascript">
|
||||
il.Util.addOnLoad(function() {
|
||||
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
|
||||
|
||||
ilias.questions.txt.wrong_answers = "Incorrect Items";
|
||||
ilias.questions.txt.wrong_answers_single = "Incorrect Choice.";
|
||||
ilias.questions.txt.tries_remaining = "Tries Remaining";
|
||||
ilias.questions.txt.please_try_again = "Please try again!";
|
||||
ilias.questions.txt.all_answers_correct = "Correct!";
|
||||
ilias.questions.txt.enough_answers_correct = "Correct, but not the best solution!";
|
||||
ilias.questions.txt.nr_of_tries_exceeded = "Number of tries exceeded.";
|
||||
ilias.questions.txt.correct_answers_shown = "Correct solution see above.";
|
||||
ilias.questions.txt.correct_answers_also = "Also correct are:";
|
||||
ilias.questions.txt.correct_answer_also = "Also correct is:";
|
||||
ilias.questions.txt.ov_all_correct = "You have correctly answered all questions.";
|
||||
ilias.questions.txt.ov_some_correct = "You have correctly answered [x] out of [y] questions.";
|
||||
ilias.questions.txt.ov_wrong_answered = "The following questions were not answered or answered wrong";
|
||||
ilias.questions.txt.please_select = "please select";
|
||||
ilias.questions.txt.ov_preview = "The question overview does not work in the page editor context. Use the SCO or SCORM level preview instead.";
|
||||
ilias.questions.txt.submit_answers = "Submit";
|
||||
ilias.questions.refresh_lang();
|
||||
il.COPagePres.updateQuestionOverviews();
|
||||
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
|
||||
|
||||
});
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,98 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en" dir="ltr" class="ilc_Fullscreen" style="overflow: visible;">
|
||||
<head>
|
||||
<title>Egalware </title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<link rel="stylesheet" type="text/css" href="" />
|
||||
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery/dist/jquery.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-11-2022-06-29"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify-jquery.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/maphilight/jquery.maphilight.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/COPage/js/ilCOPagePres.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/Link/js/ilExtLink.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/MediaObjects/js/MediaElementHelper.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
|
||||
|
||||
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilAssMultipleChoice.js"></script>
|
||||
|
||||
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilMatchingQuestion.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/Accordion/js/accordion.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/owl.carousel/dist/owl.carousel.min.js"></script>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$Id$" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/placeholder.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Modules/TestQuestionPool/templates/default/test_javascript.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
|
||||
|
||||
</head>
|
||||
<body class="ilc_Fullscreen" style="overflow: visible;">
|
||||
|
||||
<table class = "ilc_Fullscreen"><tr><td valign="middle">
|
||||
|
||||
<div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_1424/MyReport1.png"/></div></figure></div>
|
||||
|
||||
|
||||
</td></tr></table>
|
||||
|
||||
<script type="text/javascript">
|
||||
il.Util.addOnLoad(function() {
|
||||
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
|
||||
|
||||
ilias.questions.txt.wrong_answers = "Incorrect Items";
|
||||
ilias.questions.txt.wrong_answers_single = "Incorrect Choice.";
|
||||
ilias.questions.txt.tries_remaining = "Tries Remaining";
|
||||
ilias.questions.txt.please_try_again = "Please try again!";
|
||||
ilias.questions.txt.all_answers_correct = "Correct!";
|
||||
ilias.questions.txt.enough_answers_correct = "Correct, but not the best solution!";
|
||||
ilias.questions.txt.nr_of_tries_exceeded = "Number of tries exceeded.";
|
||||
ilias.questions.txt.correct_answers_shown = "Correct solution see above.";
|
||||
ilias.questions.txt.correct_answers_also = "Also correct are:";
|
||||
ilias.questions.txt.correct_answer_also = "Also correct is:";
|
||||
ilias.questions.txt.ov_all_correct = "You have correctly answered all questions.";
|
||||
ilias.questions.txt.ov_some_correct = "You have correctly answered [x] out of [y] questions.";
|
||||
ilias.questions.txt.ov_wrong_answered = "The following questions were not answered or answered wrong";
|
||||
ilias.questions.txt.please_select = "please select";
|
||||
ilias.questions.txt.ov_preview = "The question overview does not work in the page editor context. Use the SCO or SCORM level preview instead.";
|
||||
ilias.questions.txt.submit_answers = "Submit";
|
||||
ilias.questions.refresh_lang();
|
||||
il.COPagePres.updateQuestionOverviews();
|
||||
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
|
||||
|
||||
});
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,98 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en" dir="ltr" class="ilc_Fullscreen" style="overflow: visible;">
|
||||
<head>
|
||||
<title>Egalware </title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<link rel="stylesheet" type="text/css" href="" />
|
||||
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery/dist/jquery.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-11-2022-06-29"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify-jquery.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/maphilight/jquery.maphilight.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/COPage/js/ilCOPagePres.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/Link/js/ilExtLink.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/MediaObjects/js/MediaElementHelper.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
|
||||
|
||||
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilAssMultipleChoice.js"></script>
|
||||
|
||||
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilMatchingQuestion.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/Accordion/js/accordion.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/owl.carousel/dist/owl.carousel.min.js"></script>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$Id$" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/placeholder.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Modules/TestQuestionPool/templates/default/test_javascript.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
|
||||
|
||||
</head>
|
||||
<body class="ilc_Fullscreen" style="overflow: visible;">
|
||||
|
||||
<table class = "ilc_Fullscreen"><tr><td valign="middle">
|
||||
|
||||
<div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_1425/MyReport4.png"/></div></figure></div>
|
||||
|
||||
|
||||
</td></tr></table>
|
||||
|
||||
<script type="text/javascript">
|
||||
il.Util.addOnLoad(function() {
|
||||
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
|
||||
|
||||
ilias.questions.txt.wrong_answers = "Incorrect Items";
|
||||
ilias.questions.txt.wrong_answers_single = "Incorrect Choice.";
|
||||
ilias.questions.txt.tries_remaining = "Tries Remaining";
|
||||
ilias.questions.txt.please_try_again = "Please try again!";
|
||||
ilias.questions.txt.all_answers_correct = "Correct!";
|
||||
ilias.questions.txt.enough_answers_correct = "Correct, but not the best solution!";
|
||||
ilias.questions.txt.nr_of_tries_exceeded = "Number of tries exceeded.";
|
||||
ilias.questions.txt.correct_answers_shown = "Correct solution see above.";
|
||||
ilias.questions.txt.correct_answers_also = "Also correct are:";
|
||||
ilias.questions.txt.correct_answer_also = "Also correct is:";
|
||||
ilias.questions.txt.ov_all_correct = "You have correctly answered all questions.";
|
||||
ilias.questions.txt.ov_some_correct = "You have correctly answered [x] out of [y] questions.";
|
||||
ilias.questions.txt.ov_wrong_answered = "The following questions were not answered or answered wrong";
|
||||
ilias.questions.txt.please_select = "please select";
|
||||
ilias.questions.txt.ov_preview = "The question overview does not work in the page editor context. Use the SCO or SCORM level preview instead.";
|
||||
ilias.questions.txt.submit_answers = "Submit";
|
||||
ilias.questions.refresh_lang();
|
||||
il.COPagePres.updateQuestionOverviews();
|
||||
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
|
||||
|
||||
});
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery/dist/jquery.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-4-2021-11-03"></script>
|
||||
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-11-2022-06-29"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
|
||||
|
||||
@@ -24,6 +24,8 @@
|
||||
|
||||
<script type="text/javascript" src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/MediaObjects/js/MediaElementHelper.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
|
||||
@@ -34,33 +36,33 @@
|
||||
|
||||
<script type="text/javascript" src="./Services/Accordion/js/accordion.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./libs/bower/bower_components/owl.carousel/dist/owl.carousel.js"></script>
|
||||
<script type="text/javascript" src="./node_modules/owl.carousel/dist/owl.carousel.min.js"></script>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-4-2021-11-03-$Id$" media="screen" />
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$Id$" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/placeholder.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Modules/TestQuestionPool/templates/default/test_javascript.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Modules/Test/templates/default/ta.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
|
||||
|
||||
</head>
|
||||
<body class="ilc_Fullscreen" style="overflow: visible;">
|
||||
|
||||
<table class = "ilc_Fullscreen"><tr><td valign="middle">
|
||||
|
||||
<div align="center" style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_855/legends_1_.png"/></div></figure></div>
|
||||
<div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_855/legends_1_.png"/></div></figure></div>
|
||||
|
||||
|
||||
</td></tr></table>
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery/dist/jquery.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-4-2021-11-03"></script>
|
||||
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-11-2022-06-29"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
|
||||
|
||||
@@ -24,6 +24,8 @@
|
||||
|
||||
<script type="text/javascript" src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/MediaObjects/js/MediaElementHelper.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
|
||||
@@ -34,33 +36,33 @@
|
||||
|
||||
<script type="text/javascript" src="./Services/Accordion/js/accordion.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./libs/bower/bower_components/owl.carousel/dist/owl.carousel.js"></script>
|
||||
<script type="text/javascript" src="./node_modules/owl.carousel/dist/owl.carousel.min.js"></script>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-4-2021-11-03-$Id$" media="screen" />
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$Id$" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/placeholder.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Modules/TestQuestionPool/templates/default/test_javascript.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Modules/Test/templates/default/ta.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
|
||||
|
||||
</head>
|
||||
<body class="ilc_Fullscreen" style="overflow: visible;">
|
||||
|
||||
<table class = "ilc_Fullscreen"><tr><td valign="middle">
|
||||
|
||||
<div align="center" style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_856/legends_2_.png"/></div></figure></div>
|
||||
<div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_856/legends_2_.png"/></div></figure></div>
|
||||
|
||||
|
||||
</td></tr></table>
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery/dist/jquery.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-4-2021-11-03"></script>
|
||||
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-11-2022-06-29"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
|
||||
|
||||
@@ -24,6 +24,8 @@
|
||||
|
||||
<script type="text/javascript" src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/MediaObjects/js/MediaElementHelper.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
|
||||
@@ -34,33 +36,33 @@
|
||||
|
||||
<script type="text/javascript" src="./Services/Accordion/js/accordion.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./libs/bower/bower_components/owl.carousel/dist/owl.carousel.js"></script>
|
||||
<script type="text/javascript" src="./node_modules/owl.carousel/dist/owl.carousel.min.js"></script>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-4-2021-11-03-$Id$" media="screen" />
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$Id$" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/placeholder.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Modules/TestQuestionPool/templates/default/test_javascript.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Modules/Test/templates/default/ta.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
|
||||
|
||||
</head>
|
||||
<body class="ilc_Fullscreen" style="overflow: visible;">
|
||||
|
||||
<table class = "ilc_Fullscreen"><tr><td valign="middle">
|
||||
|
||||
<div align="center" style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_857/LegendaGPW.png"/></div></figure></div>
|
||||
<div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_857/LegendaGPW.png"/></div></figure></div>
|
||||
|
||||
|
||||
</td></tr></table>
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery/dist/jquery.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-4-2021-11-03"></script>
|
||||
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-11-2022-06-29"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
|
||||
|
||||
@@ -24,6 +24,8 @@
|
||||
|
||||
<script type="text/javascript" src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/MediaObjects/js/MediaElementHelper.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
|
||||
@@ -34,33 +36,33 @@
|
||||
|
||||
<script type="text/javascript" src="./Services/Accordion/js/accordion.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./libs/bower/bower_components/owl.carousel/dist/owl.carousel.js"></script>
|
||||
<script type="text/javascript" src="./node_modules/owl.carousel/dist/owl.carousel.min.js"></script>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-4-2021-11-03-$Id$" media="screen" />
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$Id$" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/placeholder.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Modules/TestQuestionPool/templates/default/test_javascript.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Modules/Test/templates/default/ta.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
|
||||
|
||||
</head>
|
||||
<body class="ilc_Fullscreen" style="overflow: visible;">
|
||||
|
||||
<table class = "ilc_Fullscreen"><tr><td valign="middle">
|
||||
|
||||
<div align="center" style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_858/legends_4_.png"/></div></figure></div>
|
||||
<div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_858/legends_4_.png"/></div></figure></div>
|
||||
|
||||
|
||||
</td></tr></table>
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery/dist/jquery.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-4-2021-11-03"></script>
|
||||
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-11-2022-06-29"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
|
||||
|
||||
@@ -24,6 +24,8 @@
|
||||
|
||||
<script type="text/javascript" src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/MediaObjects/js/MediaElementHelper.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
|
||||
@@ -34,33 +36,33 @@
|
||||
|
||||
<script type="text/javascript" src="./Services/Accordion/js/accordion.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./libs/bower/bower_components/owl.carousel/dist/owl.carousel.js"></script>
|
||||
<script type="text/javascript" src="./node_modules/owl.carousel/dist/owl.carousel.min.js"></script>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-4-2021-11-03-$Id$" media="screen" />
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$Id$" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/placeholder.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Modules/TestQuestionPool/templates/default/test_javascript.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Modules/Test/templates/default/ta.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
|
||||
|
||||
</head>
|
||||
<body class="ilc_Fullscreen" style="overflow: visible;">
|
||||
|
||||
<table class = "ilc_Fullscreen"><tr><td valign="middle">
|
||||
|
||||
<div align="center" style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_859/legends_3_.png"/></div></figure></div>
|
||||
<div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_859/legends_3_.png"/></div></figure></div>
|
||||
|
||||
|
||||
</td></tr></table>
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery/dist/jquery.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-4-2021-11-03"></script>
|
||||
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-11-2022-06-29"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
|
||||
|
||||
@@ -24,6 +24,8 @@
|
||||
|
||||
<script type="text/javascript" src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/MediaObjects/js/MediaElementHelper.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
|
||||
@@ -34,33 +36,33 @@
|
||||
|
||||
<script type="text/javascript" src="./Services/Accordion/js/accordion.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./libs/bower/bower_components/owl.carousel/dist/owl.carousel.js"></script>
|
||||
<script type="text/javascript" src="./node_modules/owl.carousel/dist/owl.carousel.min.js"></script>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-4-2021-11-03-$Id$" media="screen" />
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$Id$" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/placeholder.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Modules/TestQuestionPool/templates/default/test_javascript.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Modules/Test/templates/default/ta.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
|
||||
|
||||
</head>
|
||||
<body class="ilc_Fullscreen" style="overflow: visible;">
|
||||
|
||||
<table class = "ilc_Fullscreen"><tr><td valign="middle">
|
||||
|
||||
<div align="center" style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_860/legends_5_.png"/></div></figure></div>
|
||||
<div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_860/legends_5_.png"/></div></figure></div>
|
||||
|
||||
|
||||
</td></tr></table>
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery/dist/jquery.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-4-2021-11-03"></script>
|
||||
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-11-2022-06-29"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
|
||||
|
||||
@@ -24,6 +24,8 @@
|
||||
|
||||
<script type="text/javascript" src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/MediaObjects/js/MediaElementHelper.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
|
||||
@@ -34,33 +36,33 @@
|
||||
|
||||
<script type="text/javascript" src="./Services/Accordion/js/accordion.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./libs/bower/bower_components/owl.carousel/dist/owl.carousel.js"></script>
|
||||
<script type="text/javascript" src="./node_modules/owl.carousel/dist/owl.carousel.min.js"></script>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-4-2021-11-03-$Id$" media="screen" />
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$Id$" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/placeholder.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Modules/TestQuestionPool/templates/default/test_javascript.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Modules/Test/templates/default/ta.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
|
||||
|
||||
</head>
|
||||
<body class="ilc_Fullscreen" style="overflow: visible;">
|
||||
|
||||
<table class = "ilc_Fullscreen"><tr><td valign="middle">
|
||||
|
||||
<div align="center" style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_861/legends_6_.png"/></div></figure></div>
|
||||
<div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_861/legends_6_.png"/></div></figure></div>
|
||||
|
||||
|
||||
</td></tr></table>
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery/dist/jquery.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-4-2021-11-03"></script>
|
||||
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-11-2022-06-29"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
|
||||
|
||||
@@ -24,6 +24,8 @@
|
||||
|
||||
<script type="text/javascript" src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/MediaObjects/js/MediaElementHelper.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
|
||||
@@ -34,33 +36,33 @@
|
||||
|
||||
<script type="text/javascript" src="./Services/Accordion/js/accordion.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./libs/bower/bower_components/owl.carousel/dist/owl.carousel.js"></script>
|
||||
<script type="text/javascript" src="./node_modules/owl.carousel/dist/owl.carousel.min.js"></script>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-4-2021-11-03-$Id$" media="screen" />
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$Id$" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/placeholder.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Modules/TestQuestionPool/templates/default/test_javascript.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Modules/Test/templates/default/ta.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
|
||||
|
||||
</head>
|
||||
<body class="ilc_Fullscreen" style="overflow: visible;">
|
||||
|
||||
<table class = "ilc_Fullscreen"><tr><td valign="middle">
|
||||
|
||||
<div align="center" style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_862/legends_7_.png"/></div></figure></div>
|
||||
<div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_862/legends_7_.png"/></div></figure></div>
|
||||
|
||||
|
||||
</td></tr></table>
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery/dist/jquery.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-4-2021-11-03"></script>
|
||||
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-11-2022-06-29"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
|
||||
|
||||
@@ -24,6 +24,8 @@
|
||||
|
||||
<script type="text/javascript" src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/MediaObjects/js/MediaElementHelper.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
|
||||
@@ -34,33 +36,33 @@
|
||||
|
||||
<script type="text/javascript" src="./Services/Accordion/js/accordion.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./libs/bower/bower_components/owl.carousel/dist/owl.carousel.js"></script>
|
||||
<script type="text/javascript" src="./node_modules/owl.carousel/dist/owl.carousel.min.js"></script>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-4-2021-11-03-$Id$" media="screen" />
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$Id$" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/placeholder.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Modules/TestQuestionPool/templates/default/test_javascript.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Modules/Test/templates/default/ta.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
|
||||
|
||||
</head>
|
||||
<body class="ilc_Fullscreen" style="overflow: visible;">
|
||||
|
||||
<table class = "ilc_Fullscreen"><tr><td valign="middle">
|
||||
|
||||
<div align="center" style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_864/addnew_2_.png"/></div></figure></div>
|
||||
<div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_864/addnew_2_.png"/></div></figure></div>
|
||||
|
||||
|
||||
</td></tr></table>
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery/dist/jquery.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-4-2021-11-03"></script>
|
||||
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-11-2022-06-29"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
|
||||
|
||||
@@ -24,6 +24,8 @@
|
||||
|
||||
<script type="text/javascript" src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/MediaObjects/js/MediaElementHelper.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
|
||||
@@ -34,33 +36,33 @@
|
||||
|
||||
<script type="text/javascript" src="./Services/Accordion/js/accordion.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./libs/bower/bower_components/owl.carousel/dist/owl.carousel.js"></script>
|
||||
<script type="text/javascript" src="./node_modules/owl.carousel/dist/owl.carousel.min.js"></script>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-4-2021-11-03-$Id$" media="screen" />
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$Id$" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/placeholder.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Modules/TestQuestionPool/templates/default/test_javascript.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Modules/Test/templates/default/ta.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
|
||||
|
||||
</head>
|
||||
<body class="ilc_Fullscreen" style="overflow: visible;">
|
||||
|
||||
<table class = "ilc_Fullscreen"><tr><td valign="middle">
|
||||
|
||||
<div align="center" style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_866/dailycheck_1_.png"/></div></figure></div>
|
||||
<div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_866/dailycheck_1_.png"/></div></figure></div>
|
||||
|
||||
|
||||
</td></tr></table>
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery/dist/jquery.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-4-2021-11-03"></script>
|
||||
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-11-2022-06-29"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
|
||||
|
||||
@@ -24,6 +24,8 @@
|
||||
|
||||
<script type="text/javascript" src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/MediaObjects/js/MediaElementHelper.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
|
||||
@@ -34,33 +36,33 @@
|
||||
|
||||
<script type="text/javascript" src="./Services/Accordion/js/accordion.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./libs/bower/bower_components/owl.carousel/dist/owl.carousel.js"></script>
|
||||
<script type="text/javascript" src="./node_modules/owl.carousel/dist/owl.carousel.min.js"></script>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-4-2021-11-03-$Id$" media="screen" />
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$Id$" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/placeholder.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Modules/TestQuestionPool/templates/default/test_javascript.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Modules/Test/templates/default/ta.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
|
||||
|
||||
</head>
|
||||
<body class="ilc_Fullscreen" style="overflow: visible;">
|
||||
|
||||
<table class = "ilc_Fullscreen"><tr><td valign="middle">
|
||||
|
||||
<div align="center" style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_867/dailycheck_2_.png"/></div></figure></div>
|
||||
<div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_867/dailycheck_2_.png"/></div></figure></div>
|
||||
|
||||
|
||||
</td></tr></table>
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery/dist/jquery.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-4-2021-11-03"></script>
|
||||
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-11-2022-06-29"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
|
||||
|
||||
@@ -24,6 +24,8 @@
|
||||
|
||||
<script type="text/javascript" src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/MediaObjects/js/MediaElementHelper.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
|
||||
@@ -34,33 +36,33 @@
|
||||
|
||||
<script type="text/javascript" src="./Services/Accordion/js/accordion.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./libs/bower/bower_components/owl.carousel/dist/owl.carousel.js"></script>
|
||||
<script type="text/javascript" src="./node_modules/owl.carousel/dist/owl.carousel.min.js"></script>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-4-2021-11-03-$Id$" media="screen" />
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$Id$" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/placeholder.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Modules/TestQuestionPool/templates/default/test_javascript.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Modules/Test/templates/default/ta.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
|
||||
|
||||
</head>
|
||||
<body class="ilc_Fullscreen" style="overflow: visible;">
|
||||
|
||||
<table class = "ilc_Fullscreen"><tr><td valign="middle">
|
||||
|
||||
<div align="center" style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_870/fastrec_1_.png"/></div></figure></div>
|
||||
<div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_870/fastrec_1_.png"/></div></figure></div>
|
||||
|
||||
|
||||
</td></tr></table>
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery/dist/jquery.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-4-2021-11-03"></script>
|
||||
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-11-2022-06-29"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
|
||||
|
||||
@@ -24,6 +24,8 @@
|
||||
|
||||
<script type="text/javascript" src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/MediaObjects/js/MediaElementHelper.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
|
||||
@@ -34,33 +36,33 @@
|
||||
|
||||
<script type="text/javascript" src="./Services/Accordion/js/accordion.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./libs/bower/bower_components/owl.carousel/dist/owl.carousel.js"></script>
|
||||
<script type="text/javascript" src="./node_modules/owl.carousel/dist/owl.carousel.min.js"></script>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-4-2021-11-03-$Id$" media="screen" />
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$Id$" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/placeholder.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Modules/TestQuestionPool/templates/default/test_javascript.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Modules/Test/templates/default/ta.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
|
||||
|
||||
</head>
|
||||
<body class="ilc_Fullscreen" style="overflow: visible;">
|
||||
|
||||
<table class = "ilc_Fullscreen"><tr><td valign="middle">
|
||||
|
||||
<div align="center" style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_872/fastrec_2_.png"/></div></figure></div>
|
||||
<div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_872/fastrec_2_.png"/></div></figure></div>
|
||||
|
||||
|
||||
</td></tr></table>
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery/dist/jquery.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-4-2021-11-03"></script>
|
||||
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-11-2022-06-29"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
|
||||
|
||||
@@ -24,6 +24,8 @@
|
||||
|
||||
<script type="text/javascript" src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/MediaObjects/js/MediaElementHelper.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
|
||||
@@ -34,33 +36,33 @@
|
||||
|
||||
<script type="text/javascript" src="./Services/Accordion/js/accordion.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./libs/bower/bower_components/owl.carousel/dist/owl.carousel.js"></script>
|
||||
<script type="text/javascript" src="./node_modules/owl.carousel/dist/owl.carousel.min.js"></script>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-4-2021-11-03-$Id$" media="screen" />
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$Id$" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/placeholder.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Modules/TestQuestionPool/templates/default/test_javascript.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Modules/Test/templates/default/ta.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
|
||||
|
||||
</head>
|
||||
<body class="ilc_Fullscreen" style="overflow: visible;">
|
||||
|
||||
<table class = "ilc_Fullscreen"><tr><td valign="middle">
|
||||
|
||||
<div align="center" style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_874/mouseover.png"/></div></figure></div>
|
||||
<div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_874/mouseover.png"/></div></figure></div>
|
||||
|
||||
|
||||
</td></tr></table>
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery/dist/jquery.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-4-2021-11-03"></script>
|
||||
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-11-2022-06-29"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
|
||||
|
||||
@@ -24,6 +24,8 @@
|
||||
|
||||
<script type="text/javascript" src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/MediaObjects/js/MediaElementHelper.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
|
||||
@@ -34,33 +36,33 @@
|
||||
|
||||
<script type="text/javascript" src="./Services/Accordion/js/accordion.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./libs/bower/bower_components/owl.carousel/dist/owl.carousel.js"></script>
|
||||
<script type="text/javascript" src="./node_modules/owl.carousel/dist/owl.carousel.min.js"></script>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-4-2021-11-03-$Id$" media="screen" />
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$Id$" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/placeholder.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Modules/TestQuestionPool/templates/default/test_javascript.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Modules/Test/templates/default/ta.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
|
||||
|
||||
</head>
|
||||
<body class="ilc_Fullscreen" style="overflow: visible;">
|
||||
|
||||
<table class = "ilc_Fullscreen"><tr><td valign="middle">
|
||||
|
||||
<div align="center" style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_875/paste.png"/></div></figure></div>
|
||||
<div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_875/paste.png"/></div></figure></div>
|
||||
|
||||
|
||||
</td></tr></table>
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery/dist/jquery.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-4-2021-11-03"></script>
|
||||
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-11-2022-06-29"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
|
||||
|
||||
@@ -24,6 +24,8 @@
|
||||
|
||||
<script type="text/javascript" src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/MediaObjects/js/MediaElementHelper.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
|
||||
@@ -34,33 +36,33 @@
|
||||
|
||||
<script type="text/javascript" src="./Services/Accordion/js/accordion.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./libs/bower/bower_components/owl.carousel/dist/owl.carousel.js"></script>
|
||||
<script type="text/javascript" src="./node_modules/owl.carousel/dist/owl.carousel.min.js"></script>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-4-2021-11-03-$Id$" media="screen" />
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$Id$" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/placeholder.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Modules/TestQuestionPool/templates/default/test_javascript.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Modules/Test/templates/default/ta.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
|
||||
|
||||
</head>
|
||||
<body class="ilc_Fullscreen" style="overflow: visible;">
|
||||
|
||||
<table class = "ilc_Fullscreen"><tr><td valign="middle">
|
||||
|
||||
<div align="center" style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_876/pasted.png"/></div></figure></div>
|
||||
<div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_876/pasted.png"/></div></figure></div>
|
||||
|
||||
|
||||
</td></tr></table>
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery/dist/jquery.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-4-2021-11-03"></script>
|
||||
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-11-2022-06-29"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
|
||||
|
||||
@@ -24,6 +24,8 @@
|
||||
|
||||
<script type="text/javascript" src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/MediaObjects/js/MediaElementHelper.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
|
||||
@@ -34,33 +36,33 @@
|
||||
|
||||
<script type="text/javascript" src="./Services/Accordion/js/accordion.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./libs/bower/bower_components/owl.carousel/dist/owl.carousel.js"></script>
|
||||
<script type="text/javascript" src="./node_modules/owl.carousel/dist/owl.carousel.min.js"></script>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-4-2021-11-03-$Id$" media="screen" />
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$Id$" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/placeholder.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Modules/TestQuestionPool/templates/default/test_javascript.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Modules/Test/templates/default/ta.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
|
||||
|
||||
</head>
|
||||
<body class="ilc_Fullscreen" style="overflow: visible;">
|
||||
|
||||
<table class = "ilc_Fullscreen"><tr><td valign="middle">
|
||||
|
||||
<div align="center" style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_881/legendaprogetti.png"/></div></figure></div>
|
||||
<div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_881/legendaprogetti.png"/></div></figure></div>
|
||||
|
||||
|
||||
</td></tr></table>
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery/dist/jquery.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-4-2021-11-03"></script>
|
||||
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-11-2022-06-29"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
|
||||
|
||||
@@ -24,6 +24,8 @@
|
||||
|
||||
<script type="text/javascript" src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/MediaObjects/js/MediaElementHelper.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
|
||||
@@ -34,33 +36,33 @@
|
||||
|
||||
<script type="text/javascript" src="./Services/Accordion/js/accordion.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./libs/bower/bower_components/owl.carousel/dist/owl.carousel.js"></script>
|
||||
<script type="text/javascript" src="./node_modules/owl.carousel/dist/owl.carousel.min.js"></script>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-4-2021-11-03-$Id$" media="screen" />
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$Id$" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/placeholder.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Modules/TestQuestionPool/templates/default/test_javascript.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Modules/Test/templates/default/ta.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
|
||||
|
||||
</head>
|
||||
<body class="ilc_Fullscreen" style="overflow: visible;">
|
||||
|
||||
<table class = "ilc_Fullscreen"><tr><td valign="middle">
|
||||
|
||||
<div align="center" style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_887/timbrature_2_.png"/></div></figure></div>
|
||||
<div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_887/timbrature_2_.png"/></div></figure></div>
|
||||
|
||||
|
||||
</td></tr></table>
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery/dist/jquery.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-4-2021-11-03"></script>
|
||||
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-11-2022-06-29"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
|
||||
|
||||
@@ -24,6 +24,8 @@
|
||||
|
||||
<script type="text/javascript" src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/MediaObjects/js/MediaElementHelper.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
|
||||
@@ -34,33 +36,33 @@
|
||||
|
||||
<script type="text/javascript" src="./Services/Accordion/js/accordion.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./libs/bower/bower_components/owl.carousel/dist/owl.carousel.js"></script>
|
||||
<script type="text/javascript" src="./node_modules/owl.carousel/dist/owl.carousel.min.js"></script>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-4-2021-11-03-$Id$" media="screen" />
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$Id$" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/placeholder.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Modules/TestQuestionPool/templates/default/test_javascript.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Modules/Test/templates/default/ta.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
|
||||
|
||||
</head>
|
||||
<body class="ilc_Fullscreen" style="overflow: visible;">
|
||||
|
||||
<table class = "ilc_Fullscreen"><tr><td valign="middle">
|
||||
|
||||
<div align="center" style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_888/timbrature_1_.png"/></div></figure></div>
|
||||
<div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_888/timbrature_1_.png"/></div></figure></div>
|
||||
|
||||
|
||||
</td></tr></table>
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery/dist/jquery.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-4-2021-11-03"></script>
|
||||
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-11-2022-06-29"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
|
||||
|
||||
@@ -24,6 +24,8 @@
|
||||
|
||||
<script type="text/javascript" src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/MediaObjects/js/MediaElementHelper.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
|
||||
@@ -34,33 +36,33 @@
|
||||
|
||||
<script type="text/javascript" src="./Services/Accordion/js/accordion.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./libs/bower/bower_components/owl.carousel/dist/owl.carousel.js"></script>
|
||||
<script type="text/javascript" src="./node_modules/owl.carousel/dist/owl.carousel.min.js"></script>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-4-2021-11-03-$Id$" media="screen" />
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$Id$" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/placeholder.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Modules/TestQuestionPool/templates/default/test_javascript.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Modules/Test/templates/default/ta.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
|
||||
|
||||
</head>
|
||||
<body class="ilc_Fullscreen" style="overflow: visible;">
|
||||
|
||||
<table class = "ilc_Fullscreen"><tr><td valign="middle">
|
||||
|
||||
<div align="center" style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_889/Arrivita_1_.png"/></div></figure></div>
|
||||
<div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_889/Arrivita_1_.png"/></div></figure></div>
|
||||
|
||||
|
||||
</td></tr></table>
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery/dist/jquery.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-4-2021-11-03"></script>
|
||||
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-11-2022-06-29"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
|
||||
|
||||
@@ -24,6 +24,8 @@
|
||||
|
||||
<script type="text/javascript" src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/MediaObjects/js/MediaElementHelper.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
|
||||
@@ -34,33 +36,33 @@
|
||||
|
||||
<script type="text/javascript" src="./Services/Accordion/js/accordion.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./libs/bower/bower_components/owl.carousel/dist/owl.carousel.js"></script>
|
||||
<script type="text/javascript" src="./node_modules/owl.carousel/dist/owl.carousel.min.js"></script>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-4-2021-11-03-$Id$" media="screen" />
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$Id$" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/placeholder.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Modules/TestQuestionPool/templates/default/test_javascript.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Modules/Test/templates/default/ta.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
|
||||
|
||||
</head>
|
||||
<body class="ilc_Fullscreen" style="overflow: visible;">
|
||||
|
||||
<table class = "ilc_Fullscreen"><tr><td valign="middle">
|
||||
|
||||
<div align="center" style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_890/Arrivita_2_.png"/></div></figure></div>
|
||||
<div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_890/Arrivita_2_.png"/></div></figure></div>
|
||||
|
||||
|
||||
</td></tr></table>
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery/dist/jquery.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-4-2021-11-03"></script>
|
||||
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-11-2022-06-29"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
|
||||
|
||||
@@ -24,6 +24,8 @@
|
||||
|
||||
<script type="text/javascript" src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/MediaObjects/js/MediaElementHelper.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
|
||||
@@ -34,33 +36,33 @@
|
||||
|
||||
<script type="text/javascript" src="./Services/Accordion/js/accordion.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./libs/bower/bower_components/owl.carousel/dist/owl.carousel.js"></script>
|
||||
<script type="text/javascript" src="./node_modules/owl.carousel/dist/owl.carousel.min.js"></script>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-4-2021-11-03-$Id$" media="screen" />
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$Id$" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/placeholder.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Modules/TestQuestionPool/templates/default/test_javascript.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Modules/Test/templates/default/ta.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
|
||||
|
||||
</head>
|
||||
<body class="ilc_Fullscreen" style="overflow: visible;">
|
||||
|
||||
<table class = "ilc_Fullscreen"><tr><td valign="middle">
|
||||
|
||||
<div align="center" style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_891/Day_List_1_.png"/></div></figure></div>
|
||||
<div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_891/Day_List_1_.png"/></div></figure></div>
|
||||
|
||||
|
||||
</td></tr></table>
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery/dist/jquery.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-4-2021-11-03"></script>
|
||||
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-11-2022-06-29"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
|
||||
|
||||
@@ -24,6 +24,8 @@
|
||||
|
||||
<script type="text/javascript" src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/MediaObjects/js/MediaElementHelper.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
|
||||
@@ -34,33 +36,33 @@
|
||||
|
||||
<script type="text/javascript" src="./Services/Accordion/js/accordion.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./libs/bower/bower_components/owl.carousel/dist/owl.carousel.js"></script>
|
||||
<script type="text/javascript" src="./node_modules/owl.carousel/dist/owl.carousel.min.js"></script>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-4-2021-11-03-$Id$" media="screen" />
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$Id$" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/placeholder.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Modules/TestQuestionPool/templates/default/test_javascript.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Modules/Test/templates/default/ta.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
|
||||
|
||||
</head>
|
||||
<body class="ilc_Fullscreen" style="overflow: visible;">
|
||||
|
||||
<table class = "ilc_Fullscreen"><tr><td valign="middle">
|
||||
|
||||
<div align="center" style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_892/Day_List_3_.png"/></div></figure></div>
|
||||
<div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_892/Day_List_3_.png"/></div></figure></div>
|
||||
|
||||
|
||||
</td></tr></table>
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery/dist/jquery.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-4-2021-11-03"></script>
|
||||
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-11-2022-06-29"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
|
||||
|
||||
@@ -24,6 +24,8 @@
|
||||
|
||||
<script type="text/javascript" src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/MediaObjects/js/MediaElementHelper.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
|
||||
@@ -34,33 +36,33 @@
|
||||
|
||||
<script type="text/javascript" src="./Services/Accordion/js/accordion.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./libs/bower/bower_components/owl.carousel/dist/owl.carousel.js"></script>
|
||||
<script type="text/javascript" src="./node_modules/owl.carousel/dist/owl.carousel.min.js"></script>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-4-2021-11-03-$Id$" media="screen" />
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$Id$" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/placeholder.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Modules/TestQuestionPool/templates/default/test_javascript.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Modules/Test/templates/default/ta.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
|
||||
|
||||
</head>
|
||||
<body class="ilc_Fullscreen" style="overflow: visible;">
|
||||
|
||||
<table class = "ilc_Fullscreen"><tr><td valign="middle">
|
||||
|
||||
<div align="center" style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_893/Day_List_2_.png"/></div></figure></div>
|
||||
<div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_893/Day_List_2_.png"/></div></figure></div>
|
||||
|
||||
|
||||
</td></tr></table>
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery/dist/jquery.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-4-2021-11-03"></script>
|
||||
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-11-2022-06-29"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
|
||||
|
||||
@@ -24,6 +24,8 @@
|
||||
|
||||
<script type="text/javascript" src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/MediaObjects/js/MediaElementHelper.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
|
||||
@@ -34,33 +36,33 @@
|
||||
|
||||
<script type="text/javascript" src="./Services/Accordion/js/accordion.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./libs/bower/bower_components/owl.carousel/dist/owl.carousel.js"></script>
|
||||
<script type="text/javascript" src="./node_modules/owl.carousel/dist/owl.carousel.min.js"></script>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-4-2021-11-03-$Id$" media="screen" />
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$Id$" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/placeholder.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Modules/TestQuestionPool/templates/default/test_javascript.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Modules/Test/templates/default/ta.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
|
||||
|
||||
</head>
|
||||
<body class="ilc_Fullscreen" style="overflow: visible;">
|
||||
|
||||
<table class = "ilc_Fullscreen"><tr><td valign="middle">
|
||||
|
||||
<div align="center" style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_894/Fast_rec_libero_1_.png"/></div></figure></div>
|
||||
<div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_894/Fast_rec_libero_1_.png"/></div></figure></div>
|
||||
|
||||
|
||||
</td></tr></table>
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery/dist/jquery.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-4-2021-11-03"></script>
|
||||
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-11-2022-06-29"></script>
|
||||
|
||||
<script type="text/javascript" src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
|
||||
|
||||
@@ -24,6 +24,8 @@
|
||||
|
||||
<script type="text/javascript" src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Services/MediaObjects/js/MediaElementHelper.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
|
||||
@@ -34,33 +36,33 @@
|
||||
|
||||
<script type="text/javascript" src="./Services/Accordion/js/accordion.js"></script>
|
||||
|
||||
<script type="text/javascript" src="./libs/bower/bower_components/owl.carousel/dist/owl.carousel.js"></script>
|
||||
<script type="text/javascript" src="./node_modules/owl.carousel/dist/owl.carousel.min.js"></script>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-4-2021-11-03-$Id$" media="screen" />
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$Id$" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/placeholder.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Modules/TestQuestionPool/templates/default/test_javascript.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Modules/Test/templates/default/ta.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
|
||||
|
||||
</head>
|
||||
<body class="ilc_Fullscreen" style="overflow: visible;">
|
||||
|
||||
<table class = "ilc_Fullscreen"><tr><td valign="middle">
|
||||
|
||||
<div align="center" style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_895/Fast_rec_libero_2_.png"/></div></figure></div>
|
||||
<div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_895/Fast_rec_libero_2_.png"/></div></figure></div>
|
||||
|
||||
|
||||
</td></tr></table>
|
||||
|
||||
|
After Width: | Height: | Size: 24 KiB |
|
After Width: | Height: | Size: 2.5 KiB |
|
After Width: | Height: | Size: 19 KiB |
|
After Width: | Height: | Size: 47 KiB |
|
After Width: | Height: | Size: 194 KiB |
|
After Width: | Height: | Size: 13 KiB |
|
After Width: | Height: | Size: 12 KiB |
|
After Width: | Height: | Size: 3.0 KiB |
|
After Width: | Height: | Size: 25 KiB |
|
After Width: | Height: | Size: 16 KiB |
|
After Width: | Height: | Size: 31 KiB |
|
After Width: | Height: | Size: 277 KiB |
|
After Width: | Height: | Size: 145 KiB |
|
After Width: | Height: | Size: 111 KiB |
|
After Width: | Height: | Size: 84 KiB |
@@ -54,10 +54,12 @@ il.UI.maincontrols = il.UI.maincontrols || {};
|
||||
|
||||
//close metabar slate when focus moves out
|
||||
$('.'+_cls_slates+' > .'+_cls_slate).on('focusout', function(event) {
|
||||
let next_focus_target = event.relatedTarget;
|
||||
let current_slate = event.currentTarget;
|
||||
if(!$.contains(current_slate,next_focus_target)) {
|
||||
onClickDisengageAll();
|
||||
if(!il.UI.page.isSmallScreen()) {
|
||||
let next_focus_target = event.relatedTarget;
|
||||
let current_slate = event.currentTarget;
|
||||
if (!$.contains(current_slate, next_focus_target)) {
|
||||
onClickDisengageAll();
|
||||
}
|
||||
}
|
||||
});
|
||||
};
|
||||
@@ -85,11 +87,11 @@ il.UI.maincontrols = il.UI.maincontrols || {};
|
||||
};
|
||||
var _engageButton = function(btn) {
|
||||
btn.addClass(_cls_btn_engaged);
|
||||
btn.attr('aria-pressed', true);
|
||||
btn.attr('aria-expanded', true);
|
||||
};
|
||||
var _disengageButton = function(btn) {
|
||||
btn.removeClass(_cls_btn_engaged);
|
||||
btn.attr('aria-pressed', false);
|
||||
btn.attr('aria-expanded', false);
|
||||
};
|
||||
var _isEngaged = function(btn) {
|
||||
return btn.hasClass(_cls_btn_engaged);
|
||||
@@ -133,7 +135,6 @@ il.UI.maincontrols = il.UI.maincontrols || {};
|
||||
$('.' + _cls_entries).css("visibility","visible");
|
||||
$('#' + id +' .' + _cls_slates).children('.' + _cls_single_slate)
|
||||
.attr('aria-hidden', true)
|
||||
.attr('aria-expanded', false);
|
||||
};
|
||||
|
||||
var _initCondensed = function () {
|
||||
@@ -150,7 +151,7 @@ il.UI.maincontrols = il.UI.maincontrols || {};
|
||||
|
||||
var _tagMoreButton = function() {
|
||||
if(_getMoreButton().length === 0) {
|
||||
var entries = $('#' + id +'.' + _cls_entries).find('.btn'),
|
||||
var entries = $('#' + id +'.' + _cls_entries).find('.btn, .il-link'),
|
||||
more = entries.last();
|
||||
$(more).addClass(_cls_more_btn);
|
||||
}
|
||||
@@ -174,7 +175,7 @@ il.UI.maincontrols = il.UI.maincontrols || {};
|
||||
|
||||
var _getMetabarEntries = function() {
|
||||
return $('#' + id +'.' + _cls_entries)
|
||||
.children('li').children('.btn')
|
||||
.children('li').children('.btn, .il-link')
|
||||
.not('.' + _cls_more_btn);
|
||||
}
|
||||
|
||||
|
||||
@@ -70,10 +70,12 @@ il.UI = il.UI || {};
|
||||
|
||||
})($);
|
||||
})($, il.UI);
|
||||
il.Util.addOnLoad(function() {
|
||||
il.Util.addOnLoad(function () {
|
||||
window.setTimeout(
|
||||
function(){
|
||||
$("main").attr("tabindex", -1).focus();
|
||||
function () {
|
||||
if (il.UI.page.isSmallScreen() === false) {
|
||||
$("main").attr("tabindex", -1).focus();
|
||||
}
|
||||
}, 10
|
||||
);
|
||||
});
|
||||
});
|
||||
@@ -10,6 +10,7 @@
|
||||
bdo[dir="ltr"] { direction: ltr; unicode-bidi: bidi-override; }
|
||||
bdo[dir="rtl"] { direction: rtl; unicode-bidi: bidi-override; }
|
||||
|
||||
|
||||
/*
|
||||
/* rtl-review */
|
||||
/* with specifics imports
|
||||
@@ -369,6 +370,13 @@ html {
|
||||
-webkit-text-size-adjust: none;
|
||||
}
|
||||
}
|
||||
html, body {
|
||||
@media only screen and (max-width: @grid-float-breakpoint-max) {
|
||||
overflow: initial;
|
||||
height: auto;
|
||||
min-height: 100vh;
|
||||
}
|
||||
}
|
||||
/* see bug ILIAS bug #17589 and http://stackoverflow.com/questions/17045132/scrollbar-overlay-in-ie10-how-do-you-stop-that */
|
||||
body{
|
||||
-ms-overflow-style: scrollbar;
|
||||
@@ -527,6 +535,8 @@ a {
|
||||
color: @link-hover-color;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.il-focus();
|
||||
}
|
||||
|
||||
hr {
|
||||
@@ -1141,6 +1151,11 @@ div.il_TreeIcons {
|
||||
#current_perma_link {
|
||||
color: @il-text-color;
|
||||
font-size: 90%;
|
||||
|
||||
&:focus-visible {
|
||||
outline: @il-focus-outline-inner-width solid @il-focus-protection-color;
|
||||
outline-offset: @il-focus-outline-outer-width;
|
||||
}
|
||||
}
|
||||
a.permalink_label {
|
||||
> span.glyphicon {
|
||||
@@ -1677,6 +1692,10 @@ div.ilSideBarContent{
|
||||
overflow-y: auto;
|
||||
/* prevent horizontal scrollbar */
|
||||
overflow-x: hidden;
|
||||
|
||||
li.ui-menu-item {
|
||||
cursor: pointer;
|
||||
}
|
||||
}
|
||||
|
||||
/* Icon Default */
|
||||
@@ -1702,9 +1721,6 @@ img.ilSmallIcon {
|
||||
-webkit-hyphens: auto;
|
||||
hyphens: auto;
|
||||
}
|
||||
span.ilIcalIcon {
|
||||
text-align: initial;
|
||||
}
|
||||
|
||||
/* Component Imports */
|
||||
|
||||
@@ -1774,6 +1790,8 @@ span.ilIcalIcon {
|
||||
@import "less/Modules/LearningSequence/delos.less";
|
||||
@import "less/Services/LearningHistory/delos.less";
|
||||
@import "less/Services/Preview/delos.less";
|
||||
@import "less/Services/WebDAV/delos.less";
|
||||
@import "less/Modules/Test/delos.less";
|
||||
|
||||
.noMargin {
|
||||
margin: 0;
|
||||
@@ -1804,40 +1822,6 @@ img[src$="icon_checked.svg"] {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
div.ilNewObjectSelector {
|
||||
display: block;
|
||||
text-align: right;
|
||||
margin-bottom: 8px;
|
||||
padding: 0;
|
||||
width: 100%;
|
||||
> .btn-group.open {
|
||||
display: inline-block;
|
||||
width: 100%;
|
||||
#ilAdvSelListAnchorText_asl {
|
||||
float: right;
|
||||
}
|
||||
#ilAdvSelListAnchorText_asl + .dropdown-menu {
|
||||
top: 30px;
|
||||
right: 0;
|
||||
left: auto;
|
||||
.dropdown-header{
|
||||
margin-right:1px;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[dir="rtl"] div.ilNewObjectSelector {
|
||||
> .btn-group {
|
||||
#ilAdvSelListAnchorText_asl {
|
||||
float: left;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.pdMailRow {
|
||||
.imageSpace {
|
||||
margin-left: 40px;
|
||||
@@ -1921,43 +1905,6 @@ table.mceToolbar {
|
||||
}
|
||||
}
|
||||
|
||||
//mantis #0017724, 17884, #17943
|
||||
#ilAdvSelListAnchorText_asl + ul.dropdown-menu > li > div.row,
|
||||
#ilAdvSelListAnchorText_asl + .dropdown-backdrop + ul.dropdown-menu > li > div.row,
|
||||
#mm_adm_tr + span + ul.dropdown-menu > li > div.row,
|
||||
#mm_adm_tr + ul.dropdown-menu > li > div.row {
|
||||
@media only screen and (min-width: @screen-lg-min) {
|
||||
.row{
|
||||
width: auto;
|
||||
}
|
||||
ul{
|
||||
min-width: 250px;
|
||||
}
|
||||
}
|
||||
@media only screen and (max-width: @grid-float-breakpoint-max) {
|
||||
width: 100% !important;
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
#ilAdvSelListAnchorText_asl + ul.dropdown-menu > li > div.row
|
||||
{
|
||||
@media only screen and (max-width: @screen-md-min){
|
||||
min-width: 250px;
|
||||
}
|
||||
@media only screen and (min-width: @screen-md-min) and (max-width: @screen-lg-min){
|
||||
min-width: 500px;
|
||||
}
|
||||
@media only screen and (min-width: @screen-lg-min) {
|
||||
min-width: 750px;
|
||||
}
|
||||
}
|
||||
#ilAdvSelListAnchorText_asl + ul.dropdown-menu {
|
||||
@media only screen and (max-width: @screen-sm-min) {
|
||||
position: absolute;
|
||||
background-color: @il-main-bg;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
//Horizontal Scroll Bar for Code, see: #27132
|
||||
.code-container{
|
||||
|
||||
@@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="44px" height="44px" viewBox="0 0 277.795 277.795" enable-background="new 0 0 277.795 277.795"
|
||||
xml:space="preserve">
|
||||
<radialGradient id="SVGID_1_" cx="0.6865" cy="1.4966" r="205.4639" gradientTransform="matrix(1 0 0 1 0 -3.051758e-04)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#466488"/>
|
||||
<stop offset="0.9904" style="stop-color:#003C65"/>
|
||||
</radialGradient>
|
||||
<polygon fill="url(#SVGID_1_)" points="0,0 277.796,0 277.796,277.795 0,277.795 0,0 "/>
|
||||
<g>
|
||||
<polygon fill="#FFFFFF" points="38.764,234.134 51.467,234.134 51.467,176.364 38.764,176.364 38.764,234.134 "/>
|
||||
<polygon fill="#FFFFFF" points="62.63,234.134 103.49,234.134 103.49,223.453 75.333,223.453 75.333,176.364 62.63,176.364
|
||||
62.63,234.134 "/>
|
||||
<polygon fill="#FFFFFF" points="113.673,234.134 126.375,234.134 126.375,176.364 113.673,176.364 113.673,234.134 "/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M133.438,234.134h12.865l4.532-12.865h21.601l4.371,12.865h13.187
|
||||
l-21.602-57.77h-13.026L133.438,234.134L133.438,234.134z M161.675,190.604h0.162l7.281,21.198h-14.967L161.675,190.604
|
||||
L161.675,190.604z"/>
|
||||
<path fill="#FFFFFF" d="M196.162,214.958c-0.162,14.239,11.812,20.551,24.599,20.551c15.696,0,24.029-7.929,24.029-18.528
|
||||
c0-13.107-12.945-15.776-17.151-16.829c-14.484-3.722-17.235-4.288-17.235-8.738c0-4.854,4.694-6.554,8.739-6.554
|
||||
c6.066,0,11.002,1.78,11.408,8.738h12.298c0-13.351-11.085-18.608-23.141-18.608c-10.437,0-21.603,5.663-21.603,17.477
|
||||
c0,10.842,8.658,14.158,17.234,16.424c8.496,2.266,17.151,3.317,17.151,9.547c0,5.907-6.796,7.201-11.247,7.201
|
||||
c-6.796,0-12.783-2.994-12.783-10.68H196.162L196.162,214.958z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.0 KiB |
@@ -1,7 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<!-- Generator: Adobe Illustrator 26.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
|
||||
<polygon fill="#CAD0DF" points="16,2.7 21.4,10 30,12.9 24.8,20.2 24.7,29.3 16,26.6 7.3,29.3 7.2,20.2 2,12.9 10.6,10 "/>
|
||||
viewBox="0 0 280 266.3" style="enable-background:new 0 0 280 266.3;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#B54F00;}
|
||||
</style>
|
||||
<path class="st0" d="M67.4,170.8l-43.5-61.3l71.2-24L140,25.1l44.8,60.3l71.2,24l-43.5,61.3l-0.8,75.2L140,223.5l-71.7,22.5
|
||||
L67.4,170.8z M140,0L85.9,72.8L0,101.7l52.5,73.9l1,90.7l86.5-27.1l86.5,27.1l1-90.7l52.5-73.9l-85.9-28.9L140,0z"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 564 B After Width: | Height: | Size: 649 B |
@@ -1,25 +1,11 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<!-- Generator: Adobe Illustrator 26.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
|
||||
<g>
|
||||
<g>
|
||||
<defs>
|
||||
<polygon id="SVGID_1_" points="2,12.9 5.6,17.9 5.6,11.6 "/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" overflow="visible"/>
|
||||
</clipPath>
|
||||
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="0.9643" y1="33.6506" x2="1.9643" y2="33.6506" gradientTransform="matrix(-28 0 0 -28 57 957.0001)">
|
||||
<stop offset="0" style="stop-color:#FF8D2C"/>
|
||||
<stop offset="1.000000e-02" style="stop-color:#FF8D2C"/>
|
||||
<stop offset="1" style="stop-color:#E56E1E"/>
|
||||
</linearGradient>
|
||||
<rect x="2" y="11.6" clip-path="url(#SVGID_2_)" fill="url(#SVGID_3_)" width="3.6" height="6.3"/>
|
||||
</g>
|
||||
<polygon fill="#CAD0DF" points="16,2.7 10.6,10 5.6,11.6 5.6,17.9 7.2,20.2 7.3,29.3 16,26.6 24.7,29.3 24.8,20.2 30,12.9 21.4,10
|
||||
"/>
|
||||
</g>
|
||||
viewBox="0 0 280 266.3" style="enable-background:new 0 0 280 266.3;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#B54F00;}
|
||||
</style>
|
||||
<path class="st0" d="M67.4,170.8L36,126.5v-21.1l59.2-19.9L140,25.1l44.8,60.3l71.2,24l-43.5,61.3l-0.8,75.2L140,223.5l-71.7,22.5
|
||||
L67.4,170.8z M140,0L85.9,72.8L0,101.7l0,0l36,50.7l16.5,23.2l1,90.7l86.5-27.1l0,0l86.5,27.1l1-90.7l52.5-73.9l-85.9-28.9L140,0z"
|
||||
/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 673 B |
@@ -1,21 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<!-- Generator: Adobe Illustrator 26.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
|
||||
<g>
|
||||
<defs>
|
||||
<polygon id="SVGID_1_" points="16,2.7 10.6,10 2,12.9 7.2,20.2 7.3,29.3 16,26.6 24.7,29.3 24.8,20.2 30,12.9 21.4,10 "/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" overflow="visible"/>
|
||||
</clipPath>
|
||||
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="0.9643" y1="33.6071" x2="1.9643" y2="33.6071" gradientTransform="matrix(-28 0 0 -28 57 957)">
|
||||
<stop offset="0" style="stop-color:#FF8E2C"/>
|
||||
<stop offset="1.000000e-02" style="stop-color:#FF8E2C"/>
|
||||
<stop offset="1" style="stop-color:#E66E1E"/>
|
||||
</linearGradient>
|
||||
<rect x="2" y="2.7" clip-path="url(#SVGID_2_)" fill="url(#SVGID_3_)" width="28" height="26.6"/>
|
||||
</g>
|
||||
viewBox="0 0 280 266.3" style="enable-background:new 0 0 280 266.3;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#B54F00;}
|
||||
</style>
|
||||
<polygon class="st0" points="140,0 85.9,72.8 0,101.7 52.5,175.6 53.5,266.3 140,239.2 226.5,266.3 227.5,175.6 280,101.7
|
||||
194.1,72.8 "/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 550 B |
@@ -1,22 +1,11 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<!-- Generator: Adobe Illustrator 26.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
|
||||
<g>
|
||||
<defs>
|
||||
<polygon id="SVGID_1_" points="2,12.9 7.3,20.2 7.3,29.3 8.4,29 8.4,10.7 "/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" overflow="visible"/>
|
||||
</clipPath>
|
||||
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="0.9643" y1="33.464" x2="1.9643" y2="33.464" gradientTransform="matrix(-28 0 0 -28 57 957.0001)">
|
||||
<stop offset="0" style="stop-color:#FF8D2C"/>
|
||||
<stop offset="1.000000e-02" style="stop-color:#FF8D2C"/>
|
||||
<stop offset="1" style="stop-color:#E56E1E"/>
|
||||
</linearGradient>
|
||||
<rect x="2" y="10.7" clip-path="url(#SVGID_2_)" fill="url(#SVGID_3_)" width="6.4" height="18.6"/>
|
||||
</g>
|
||||
<polygon fill="#CAD0DF" points="16,2.7 10.6,10 8.4,10.7 8.4,29 16,26.6 24.7,29.3 24.8,20.2 30,12.9 21.4,10 "/>
|
||||
viewBox="0 0 280 266.3" style="enable-background:new 0 0 280 266.3;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#B54F00;}
|
||||
</style>
|
||||
<path class="st0" d="M67.4,170.8l-3.4-4.9V96l31.2-10.5L140,25.1l44.8,60.3l71.2,24l-43.5,61.3l-0.8,75.2L140,223.5l-71.7,22.5
|
||||
L67.4,170.8z M140,0L85.9,72.8L0,101.7l0,0l31.2,43.9l21.3,30.1l1,90.7l86.5-27.1l0,0l86.5,27.1l1-90.7l52.5-73.9l-85.9-28.9L140,0z
|
||||
"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 672 B |
@@ -1,22 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<!-- Generator: Adobe Illustrator 26.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
|
||||
<g>
|
||||
<defs>
|
||||
<polygon id="SVGID_1_" points="2,12.9 7.3,20.2 7.3,29.3 10.4,28.4 10.4,10 "/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" overflow="visible"/>
|
||||
</clipPath>
|
||||
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="0.9643" y1="33.476" x2="1.9643" y2="33.476" gradientTransform="matrix(-28 0 0 -28 57 957.0001)">
|
||||
<stop offset="0" style="stop-color:#FF8D2C"/>
|
||||
<stop offset="1.000000e-02" style="stop-color:#FF8D2C"/>
|
||||
<stop offset="1" style="stop-color:#E56E1E"/>
|
||||
</linearGradient>
|
||||
<rect x="2" y="10" clip-path="url(#SVGID_2_)" fill="url(#SVGID_3_)" width="8.4" height="19.3"/>
|
||||
</g>
|
||||
<polygon fill="#CAD0DF" points="16,2.7 10.6,10 10.4,10 10.4,28.4 16,26.6 24.7,29.3 24.8,20.2 30,12.9 21.4,10 "/>
|
||||
viewBox="0 0 280 266.3" style="enable-background:new 0 0 280 266.3;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#B54F00;}
|
||||
</style>
|
||||
<path class="st0" d="M84,89.2l11.2-3.8L140,25.1l44.8,60.3l71.2,24l-43.5,61.3l-0.8,75.2L140,223.5L84,241V89.2z M140,0L85.9,72.8
|
||||
L0,101.7l0,0l31.2,43.9l21.3,30.1l1,90.7l86.5-27.1l0,0l86.5,27.1l1-90.7l52.5-73.9l-85.9-28.9L140,0z"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 644 B |
@@ -1,22 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<!-- Generator: Adobe Illustrator 26.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
|
||||
<g>
|
||||
<defs>
|
||||
<polygon id="SVGID_1_" points="10.6,10 2,12.9 7.3,20.2 7.3,29.3 13.2,27.5 13.2,6.5 "/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" overflow="visible"/>
|
||||
</clipPath>
|
||||
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="0.9643" y1="33.5399" x2="1.9643" y2="33.5399" gradientTransform="matrix(-28 0 0 -28 57 957.0001)">
|
||||
<stop offset="0" style="stop-color:#FF8D2C"/>
|
||||
<stop offset="1.000000e-02" style="stop-color:#FF8D2C"/>
|
||||
<stop offset="1" style="stop-color:#E56E1E"/>
|
||||
</linearGradient>
|
||||
<rect x="2" y="6.5" clip-path="url(#SVGID_2_)" fill="url(#SVGID_3_)" width="11.2" height="22.9"/>
|
||||
</g>
|
||||
<polygon fill="#CAD0DF" points="16,2.7 13.2,6.5 13.2,27.5 16,26.6 24.7,29.3 24.8,20.2 30,12.9 21.4,10 "/>
|
||||
viewBox="0 0 280 266.3" style="enable-background:new 0 0 280 266.3;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#B54F00;}
|
||||
</style>
|
||||
<path class="st0" d="M112,62.8l28-37.7l44.8,60.3l71.2,24l-43.5,61.3l-0.8,75.2L140,223.5l-28,8.8V62.8z M140,0L85.9,72.8L0,101.7
|
||||
l0,0l31.2,43.9l21.3,30.1l1,90.7l86.5-27.1l0,0l86.5,27.1l1-90.7l52.5-73.9l-85.9-28.9L140,0z"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 636 B |
@@ -1,22 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<!-- Generator: Adobe Illustrator 26.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
|
||||
<g>
|
||||
<defs>
|
||||
<polygon id="SVGID_1_" points="16,2.7 10.6,10 2,12.9 7.3,20.2 7.3,29.3 16,26.6 "/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" overflow="visible"/>
|
||||
</clipPath>
|
||||
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="0.9643" y1="33.6071" x2="1.9643" y2="33.6071" gradientTransform="matrix(-28 0 0 -28 57 957.0001)">
|
||||
<stop offset="0" style="stop-color:#FF8D2C"/>
|
||||
<stop offset="1.000000e-02" style="stop-color:#FF8D2C"/>
|
||||
<stop offset="1" style="stop-color:#E56E1E"/>
|
||||
</linearGradient>
|
||||
<rect x="2" y="2.7" clip-path="url(#SVGID_2_)" fill="url(#SVGID_3_)" width="14" height="26.6"/>
|
||||
</g>
|
||||
<polygon fill="#CAD0DF" points="16,2.7 16,26.6 24.7,29.3 24.8,20.2 30,12.9 21.4,10 "/>
|
||||
viewBox="0 0 280 266.3" style="enable-background:new 0 0 280 266.3;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#B54F00;}
|
||||
</style>
|
||||
<path class="st0" d="M140,223.5V25.1l44.8,60.3l71.2,24l-43.5,61.3l-0.8,75.2L140,223.5z M140,0L85.9,72.8L0,101.7l0,0l31.2,43.9
|
||||
l21.3,30.1l1,90.7l86.5-27.1l0,0l86.5,27.1l1-90.7l52.5-73.9l-85.9-28.9L140,0z"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 621 B |
@@ -1,22 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<!-- Generator: Adobe Illustrator 26.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
|
||||
<polygon fill="#CAD0DF" points="18.8,27.5 24.7,29.3 24.8,20.2 30,12.9 21.4,10 18.8,6.5 "/>
|
||||
<g>
|
||||
<defs>
|
||||
<polygon id="SVGID_1_" points="16,2.7 10.6,10 2,12.9 7.2,20.2 7.3,29.3 16,26.6 18.8,27.5 18.8,6.5 "/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" overflow="visible"/>
|
||||
</clipPath>
|
||||
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="0.9405" y1="34.0119" x2="1.9405" y2="34.0119" gradientTransform="matrix(-16.7999 0 0 -16.7999 34.5998 587.3967)">
|
||||
<stop offset="0" style="stop-color:#FF8D2C"/>
|
||||
<stop offset="1.000000e-02" style="stop-color:#FF8D2C"/>
|
||||
<stop offset="1" style="stop-color:#E56E1E"/>
|
||||
</linearGradient>
|
||||
<rect x="2" y="2.7" clip-path="url(#SVGID_2_)" fill="url(#SVGID_3_)" width="16.8" height="26.6"/>
|
||||
</g>
|
||||
viewBox="0 0 280 266.3" style="enable-background:new 0 0 280 266.3;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#B54F00;}
|
||||
</style>
|
||||
<path class="st0" d="M168,232.3V62.8l16.8,22.7l71.2,24l-43.5,61.3l-0.8,75.2L168,232.3z M140,0L85.9,72.8L0,101.7l0,0l26.8,37.7
|
||||
l25.7,36.2l1,90.7l86.5-27.1l0,0l86.5,27.1l1-90.7l52.5-73.9l-85.9-28.9L140,0z"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 621 B |
@@ -1,22 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<!-- Generator: Adobe Illustrator 26.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
|
||||
<polygon fill="#CAD0DF" points="21.6,28.4 24.7,29.3 24.8,20.2 30,12.9 21.6,10 "/>
|
||||
<g>
|
||||
<defs>
|
||||
<polygon id="SVGID_1_" points="16,2.7 10.6,10 2,12.9 7.2,20.2 7.3,29.3 16,26.6 21.6,28.4 21.6,10 21.4,10 "/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" overflow="visible"/>
|
||||
</clipPath>
|
||||
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="0.949" y1="33.8674" x2="1.949" y2="33.8674" gradientTransform="matrix(-19.5999 0 0 -19.5999 40.1998 679.7967)">
|
||||
<stop offset="0" style="stop-color:#FF8D2C"/>
|
||||
<stop offset="1.000000e-02" style="stop-color:#FF8D2C"/>
|
||||
<stop offset="1" style="stop-color:#E56E1E"/>
|
||||
</linearGradient>
|
||||
<rect x="2" y="2.7" clip-path="url(#SVGID_2_)" fill="url(#SVGID_3_)" width="19.6" height="26.6"/>
|
||||
</g>
|
||||
viewBox="0 0 280 266.3" style="enable-background:new 0 0 280 266.3;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#B54F00;}
|
||||
</style>
|
||||
<path class="st0" d="M196,241V89.2l60.1,20.2l-43.5,61.3l-0.8,75.2L196,241z M140,0L85.9,72.8L0,101.7l0,0l26.8,37.7l25.7,36.2
|
||||
l1,90.7l86.5-27.1l0,0l86.5,27.1l1-90.7l52.5-73.9l-85.9-28.9L140,0z"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 609 B |
@@ -1,22 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<!-- Generator: Adobe Illustrator 26.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
|
||||
<polygon fill="#CAD0DF" points="23.6,29 24.7,29.3 24.8,20.2 30,12.9 23.6,10.7 "/>
|
||||
<g>
|
||||
<defs>
|
||||
<polygon id="SVGID_1_" points="16,2.7 10.6,10 2,12.9 7.2,20.2 7.3,29.3 16,26.6 23.6,29 23.6,10.7 21.4,10 "/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" overflow="visible"/>
|
||||
</clipPath>
|
||||
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="0.9537" y1="33.787" x2="1.9537" y2="33.787" gradientTransform="matrix(-21.5999 0 0 -21.5999 44.1998 745.7967)">
|
||||
<stop offset="0" style="stop-color:#FF8D2C"/>
|
||||
<stop offset="1.000000e-02" style="stop-color:#FF8D2C"/>
|
||||
<stop offset="1" style="stop-color:#E56E1E"/>
|
||||
</linearGradient>
|
||||
<rect x="2" y="2.7" clip-path="url(#SVGID_2_)" fill="url(#SVGID_3_)" width="21.6" height="26.6"/>
|
||||
</g>
|
||||
viewBox="0 0 280 266.3" style="enable-background:new 0 0 280 266.3;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#B54F00;}
|
||||
</style>
|
||||
<path class="st0" d="M216,96l40.1,13.5L216,165.9V96z M140,0L85.9,72.8L0,101.7l0,0l26.8,37.7l25.7,36.2l1,90.7l86.5-27.1l0,0
|
||||
l86.5,27.1l1-90.7l52.5-73.9l-85.9-28.9L140,0z"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 587 B |
@@ -1,23 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<!-- Generator: Adobe Illustrator 26.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
|
||||
<polygon fill="#CAD0DF" points="26.4,17.9 30,12.9 26.4,11.6 "/>
|
||||
<g>
|
||||
<defs>
|
||||
<polygon id="SVGID_1_" points="16,2.7 10.6,10 2,12.9 7.3,20.2 7.3,29.3 16,26.6 24.7,29.3 24.8,20.2 26.4,17.9 26.4,11.6
|
||||
21.4,10 "/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" overflow="visible"/>
|
||||
</clipPath>
|
||||
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="0.959" y1="33.6967" x2="1.959" y2="33.6967" gradientTransform="matrix(-24.3999 0 0 -24.3999 49.7998 838.1967)">
|
||||
<stop offset="0" style="stop-color:#FF8D2C"/>
|
||||
<stop offset="1.000000e-02" style="stop-color:#FF8D2C"/>
|
||||
<stop offset="1" style="stop-color:#E56E1E"/>
|
||||
</linearGradient>
|
||||
<rect x="2" y="2.7" clip-path="url(#SVGID_2_)" fill="url(#SVGID_3_)" width="24.4" height="26.6"/>
|
||||
</g>
|
||||
viewBox="0 0 280 266.3" style="enable-background:new 0 0 280 266.3;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#B54F00;}
|
||||
</style>
|
||||
<path class="st0" d="M244,105.4l12.1,4.1l-12.1,17V105.4z M140,0L85.9,72.8L0,101.7l0,0l26.8,37.7l25.7,36.2l1,90.7l86.5-27.1l0,0
|
||||
l86.5,27.1l1-90.7l52.5-73.9l-85.9-28.9L140,0z"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 591 B |
@@ -1,7 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<!-- Generator: Adobe Illustrator 26.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
|
||||
<polygon fill="#CAD0DF" points="16,2.7 21.4,10 30,12.9 24.8,20.2 24.7,29.3 16,26.6 7.3,29.3 7.2,20.2 2,12.9 10.6,10 "/>
|
||||
viewBox="0 0 280 266.3" style="enable-background:new 0 0 280 266.3;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#B54F00;}
|
||||
</style>
|
||||
<path class="st0" d="M67.4,170.8l-43.5-61.3l71.2-24L140,25.1l44.8,60.3l71.2,24l-43.5,61.3l-0.8,75.2L140,223.5l-71.7,22.5
|
||||
L67.4,170.8z M140,0L85.9,72.8L0,101.7l52.5,73.9l1,90.7l86.5-27.1l86.5,27.1l1-90.7l52.5-73.9l-85.9-28.9L140,0z"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 564 B After Width: | Height: | Size: 649 B |
@@ -1,21 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<!-- Generator: Adobe Illustrator 26.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
|
||||
<g>
|
||||
<defs>
|
||||
<polygon id="SVGID_1_" points="16,2.7 10.6,10 2,12.9 7.2,20.2 7.3,29.3 16,26.6 24.7,29.3 24.8,20.2 30,12.9 21.4,10 "/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" overflow="visible"/>
|
||||
</clipPath>
|
||||
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="0.9643" y1="33.6071" x2="1.9643" y2="33.6071" gradientTransform="matrix(-28 0 0 -28 57 957)">
|
||||
<stop offset="0" style="stop-color:#FF8E2C"/>
|
||||
<stop offset="1.000000e-02" style="stop-color:#FF8E2C"/>
|
||||
<stop offset="1" style="stop-color:#E66E1E"/>
|
||||
</linearGradient>
|
||||
<rect x="2" y="2.7" clip-path="url(#SVGID_2_)" fill="url(#SVGID_3_)" width="28" height="26.6"/>
|
||||
</g>
|
||||
viewBox="0 0 280 266.3" style="enable-background:new 0 0 280 266.3;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#B54F00;}
|
||||
</style>
|
||||
<polygon class="st0" points="140,0 85.9,72.8 0,101.7 52.5,175.6 53.5,266.3 140,239.2 226.5,266.3 227.5,175.6 280,101.7
|
||||
194.1,72.8 "/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 550 B |
@@ -1,21 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<!-- Generator: Adobe Illustrator 26.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
|
||||
<g>
|
||||
<defs>
|
||||
<polygon id="SVGID_1_" points="16,2.7 10.6,10 2,12.9 7.2,20.2 7.3,29.3 16,26.6 24.7,29.3 24.8,20.2 30,12.9 21.4,10 "/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" overflow="visible"/>
|
||||
</clipPath>
|
||||
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="-120.4643" y1="163.0714" x2="-119.4643" y2="163.0714" gradientTransform="matrix(28 0 0 -28 3375 4582)">
|
||||
<stop offset="0" style="stop-color:#002555"/>
|
||||
<stop offset="1.983430e-02" style="stop-color:#002555"/>
|
||||
<stop offset="1" style="stop-color:#0F4187"/>
|
||||
</linearGradient>
|
||||
<rect x="2" y="2.7" clip-path="url(#SVGID_2_)" fill="url(#SVGID_3_)" width="28" height="26.6"/>
|
||||
</g>
|
||||
viewBox="0 0 280 266.3" style="enable-background:new 0 0 280 266.3;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#4C6586;}
|
||||
</style>
|
||||
<polygon class="st0" points="140,0 85.9,72.8 0,101.7 52.5,175.6 53.5,266.3 140,239.2 226.5,266.3 227.5,175.6 280,101.7
|
||||
194.1,72.8 "/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 550 B |
@@ -0,0 +1 @@
|
||||
<svg id="cat-pg" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><defs><style>.cls-1{fill:none;stroke:#000;stroke-linejoin:round;stroke-width:1.45px;}</style></defs><title>icon_lso</title><polyline class="cls-1" points="6 16 16 26 26 16"/><polygon class="cls-1" points="26 6 6 6 11 11 6 11 16 21 26 11 21 11 26 6"/></svg>
|
||||
|
After Width: | Height: | Size: 328 B |
@@ -0,0 +1,673 @@
|
||||
/* former ta.css */
|
||||
|
||||
.kiosk {
|
||||
padding: 2em;
|
||||
background-color: #fafafa;
|
||||
}
|
||||
|
||||
.fullwidth_invisible {
|
||||
background-color: transparent !important;
|
||||
}
|
||||
|
||||
.feedback {
|
||||
/* border: 1px solid gray;*/
|
||||
padding: 4px;
|
||||
display: block;
|
||||
background: #EEEEEE;
|
||||
}
|
||||
|
||||
.centermessage {
|
||||
width: 25em;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
font-weight: bold;
|
||||
font-size: 150%;
|
||||
}
|
||||
|
||||
.col2 {
|
||||
width: 100%;
|
||||
float: left;
|
||||
}
|
||||
|
||||
.rcol {
|
||||
width: 50%;
|
||||
float: right;
|
||||
}
|
||||
|
||||
.lcol {
|
||||
width: 50%;
|
||||
float: left;
|
||||
}
|
||||
|
||||
.participant.solution {
|
||||
padding: 5px;
|
||||
width: 50%;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.lcol.participant
|
||||
{
|
||||
width: 49%;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.rcol.solution {
|
||||
width: 49%;
|
||||
overflow-x: auto;
|
||||
padding: 5px;
|
||||
background: #E2FFC7; /* Fallback IE 6-8 */
|
||||
background: rgba(226, 255, 199, .4);
|
||||
}
|
||||
|
||||
#kioskOptions {
|
||||
clear: both;
|
||||
overflow: hidden;
|
||||
width: 100%;
|
||||
border-top: 1px #aaa solid;
|
||||
border-bottom: 1px #aaa solid;
|
||||
margin-bottom: 1em;
|
||||
padding: 1em 0;
|
||||
}
|
||||
|
||||
#kioskTestTitle {
|
||||
float: left;
|
||||
width: 50%;
|
||||
}
|
||||
|
||||
#kioskParticipant {
|
||||
float: right;
|
||||
text-align: right;
|
||||
width: 50%;
|
||||
}
|
||||
|
||||
.print {
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
|
||||
.ilTstWorkingFormBlock_WorkingTime {
|
||||
text-align: center;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.ilTstWorkingFormInfo_UserWorkingTime {
|
||||
visibility: hidden;
|
||||
display: none;
|
||||
}
|
||||
|
||||
.ilTstWorkingFormInfo_ProcessTimeLeft {
|
||||
font-size: 200%;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.ilTstQuestionSummaryBlock_WorkingTime {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
div.ilc_Question {
|
||||
padding-left: 20px;
|
||||
margin-top: 10px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.testSheet {
|
||||
background: #EEEEEE;
|
||||
border-spacing: 1px;
|
||||
border: 1px outset #BBBBBB;
|
||||
margin: 5px;
|
||||
padding: 2em;
|
||||
}
|
||||
|
||||
.questionTitle {
|
||||
margin-top: 5px;
|
||||
margin-bottom: 5px;
|
||||
font-size: 140%;
|
||||
padding-bottom: 3px;
|
||||
border-bottom-width: 1px;
|
||||
border-bottom-style: solid;
|
||||
border-color: #000000;
|
||||
}
|
||||
|
||||
.ilTestQuestionRelatedObjectivesInfo
|
||||
{
|
||||
font-size: 0.7em;
|
||||
font-style: italic;
|
||||
margin: 5px 0;
|
||||
}
|
||||
|
||||
.questionPrintview {
|
||||
border: 1px solid #C0C0C0;
|
||||
padding: 0.25em;
|
||||
margin-top: 1em;
|
||||
}
|
||||
|
||||
.solutionbox {
|
||||
color: black;
|
||||
background-color: white;
|
||||
padding-left: 5px;
|
||||
padding-right: 5px;
|
||||
border-style: inset;
|
||||
border-width: 1px;
|
||||
}
|
||||
|
||||
td.middle {
|
||||
color: #000000;
|
||||
background-color: inherit;
|
||||
border-spacing: 0px;
|
||||
border: none;
|
||||
padding: 3px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
td.top {
|
||||
color: #000000;
|
||||
background-color: inherit;
|
||||
border-spacing: 0px;
|
||||
border: none;
|
||||
padding: 3px;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
/* --- Test tool javascript styles --- */
|
||||
|
||||
span.nowrap {
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
div.termtext {
|
||||
width: 200px;
|
||||
height: 100px;
|
||||
border: 1px solid #000000;
|
||||
background-color: #F1F1F1;
|
||||
color: #222222;
|
||||
padding: 10px;
|
||||
vertical-align: middle;
|
||||
border-style: outset;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
div.dropzone {
|
||||
width: 220px;
|
||||
height: 120px;
|
||||
border: 1px solid #000000;
|
||||
background-color: #FFE4E4;
|
||||
color: #222222;
|
||||
padding: 10px;
|
||||
vertical-align: middle;
|
||||
border-style: dotted;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
div.textboximage {
|
||||
width: 200px;
|
||||
height: 80px;
|
||||
border: 1px solid #000000;
|
||||
background: #DDDDDD;
|
||||
padding: 10px;
|
||||
vertical-align: middle;
|
||||
border-style: outset;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
div.imagebox {
|
||||
width: 200px;
|
||||
height: 100px;
|
||||
border: 1px solid #000000;
|
||||
background-color: #F1F1F1;
|
||||
color: #222222;
|
||||
padding: 10px;
|
||||
vertical-align: middle;
|
||||
border-style: outset;
|
||||
text-align: center;
|
||||
z-index: 200;
|
||||
}
|
||||
|
||||
div.textbox {
|
||||
width: 200px;
|
||||
height: 100px;
|
||||
border: 1px solid #000000;
|
||||
background-color: #F1F1F1;
|
||||
color: #222222;
|
||||
padding: 10px;
|
||||
vertical-align: middle;
|
||||
border-style: outset;
|
||||
text-align: center;
|
||||
z-index: 200;
|
||||
}
|
||||
|
||||
#filterpanel {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.filteractive {
|
||||
background-color: #f7face;
|
||||
border: 1px #d48110 solid;
|
||||
}
|
||||
|
||||
.filterinactive {
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
.manfeedback .toggle-button
|
||||
{
|
||||
padding-left:20px;
|
||||
background:transparent url(images/del_sprite_arrows.gif) 3px -318px no-repeat;
|
||||
cursor:pointer;
|
||||
}
|
||||
|
||||
.manfeedback .yes
|
||||
{
|
||||
padding-left:20px;
|
||||
background:transparent url(images/del_sprite_arrows.gif) 3px -359px no-repeat;
|
||||
cursor:pointer;
|
||||
}
|
||||
|
||||
.manfeedback .off
|
||||
{
|
||||
padding-left:20px;
|
||||
background:none;
|
||||
cursor:default;
|
||||
}
|
||||
|
||||
div.odd {
|
||||
padding: 0.5em 0;
|
||||
}
|
||||
|
||||
div.even {
|
||||
padding: 0.5em 0;
|
||||
}
|
||||
|
||||
div.last {
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
|
||||
table.imagemapareas tr,
|
||||
table.kvpwizard tr,
|
||||
table.matchingwizard tr,
|
||||
table.matchingpairwizard tr,
|
||||
table.errortextwizard tr,
|
||||
table.singlechoicewizard tr,
|
||||
table.multiplechoicewizard tr {
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
table.imagemapareas th,
|
||||
table.kvpwizard th,
|
||||
table.matchingwizard th,
|
||||
table.matchingpairwizard th,
|
||||
table.errortextwizard th,
|
||||
table.singlechoicewizard th,
|
||||
table.multiplechoicewizard th,
|
||||
table.kprimchoicewizard th
|
||||
{
|
||||
vertical-align: top;
|
||||
}
|
||||
table.kprimchoicewizard th.true,
|
||||
table.kprimchoicewizard th.false
|
||||
{
|
||||
padding: 5px 5px;
|
||||
}
|
||||
table.kprimchoicewizard td.correctness
|
||||
{
|
||||
vertical-align: top;
|
||||
text-align: center;
|
||||
}
|
||||
table.kprimchoicewizard th
|
||||
{
|
||||
font-size: 90%;
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
}
|
||||
table.kprimchoicewizard
|
||||
{
|
||||
}
|
||||
table.kprimchoicewizard
|
||||
{
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
table.kprimchoicewizard td
|
||||
{
|
||||
padding-top: 15px;
|
||||
}
|
||||
div.ilAssKprimChoiceTable div.optionLabel,
|
||||
table.kprimchoicewizard th.optionLabel
|
||||
{
|
||||
background-color: lightgrey;
|
||||
}
|
||||
|
||||
table.ilAssKprimChoiceTable tr.aggregaterow td
|
||||
{
|
||||
border-bottom: solid lightgrey 1px;
|
||||
}
|
||||
table.ilAssKprimChoiceTable tr.aggregaterow td.answer_frequency
|
||||
{
|
||||
text-align: right;
|
||||
}
|
||||
table.il_tst_answer_aggregation
|
||||
{
|
||||
border-collapse: collapse;
|
||||
}
|
||||
table.il_tst_answer_aggregation td,
|
||||
table.il_tst_answer_aggregation th
|
||||
{
|
||||
padding: 5px 15px;
|
||||
}
|
||||
table.il_tst_answer_aggregation th
|
||||
{
|
||||
background-color: lightgrey;
|
||||
}
|
||||
table.il_tst_answer_aggregation td
|
||||
{
|
||||
border-bottom: solid lightgrey 1px;
|
||||
}
|
||||
table.il_tst_answer_aggregation td.answer_option
|
||||
{
|
||||
font-style: italic;
|
||||
}
|
||||
table.il_tst_answer_aggregation td.answer_frequency
|
||||
{
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
#tst_output {
|
||||
clear: both;
|
||||
overflow: hidden;
|
||||
width: 100%;
|
||||
float: left;
|
||||
}
|
||||
|
||||
#tst_left {
|
||||
float: left;
|
||||
width: 0%;
|
||||
}
|
||||
|
||||
#tst_left h1 {
|
||||
font-size: 110%;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
#tst_right {
|
||||
float: right;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.question_description {
|
||||
font-style: italic;
|
||||
font-size: 90%;
|
||||
}
|
||||
|
||||
ul.shortlist {
|
||||
list-style-type: none;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/* fau: testNav - icon for answered/unanswered questions in shortlist */
|
||||
ul.shortlist li {
|
||||
padding: 0 0 6px 15px;
|
||||
background-repeat: no-repeat;
|
||||
background-size: 10px;
|
||||
background-position: 0px 5px;
|
||||
}
|
||||
|
||||
ul.shortlist li.answered {
|
||||
background-image: url('../../../../templates/default/images/answered.svg');
|
||||
}
|
||||
|
||||
ul.shortlist li.unanswered {
|
||||
background-image: url('../../../../templates/default/images/answered_not.svg');
|
||||
}
|
||||
/* fau. */
|
||||
|
||||
ul.shortlist li.active {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
ul.shortlist li.listEntry a
|
||||
{
|
||||
text-decoration:none;
|
||||
color:#0033AA;
|
||||
}
|
||||
|
||||
ul.shortlist li.listEntry a:hover
|
||||
{
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.number {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.errortext a:link,
|
||||
.errortext a:visited {
|
||||
text-decoration: none;
|
||||
color: #000;
|
||||
padding: 0 2px;
|
||||
line-height: 1.5em;
|
||||
}
|
||||
|
||||
.errortext a:hover {
|
||||
background-color: #ddd;
|
||||
}
|
||||
|
||||
.ilc_qetitem_ErrorTextSelected {
|
||||
background-color: #9bd9fe;
|
||||
border: 1px #666 solid;
|
||||
}
|
||||
.selGroup {
|
||||
border: 2px #9bd9fe solid;
|
||||
padding: 3px 2px;
|
||||
margin-right: 2px;
|
||||
}
|
||||
|
||||
|
||||
.imageselection {
|
||||
}
|
||||
|
||||
.questionpool_info {
|
||||
padding: 0.4em;
|
||||
margin-top: 0.4em;
|
||||
}
|
||||
|
||||
.questionpool_title {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
td.matching {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
div.term {
|
||||
display: inline;
|
||||
padding: 0.5em 1em;
|
||||
float: left;
|
||||
}
|
||||
|
||||
.solutiontable td {
|
||||
padding: 0 1em;
|
||||
}
|
||||
|
||||
span.result {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
div.ilc_Page.readonly div.ilc_question_Standard
|
||||
{
|
||||
background-color: #f3f3f3;
|
||||
background-image: url(../../../../templates/default/images/qmark-ro.svg);
|
||||
}
|
||||
|
||||
ul.ilAssQuestionRelatedNavigationContainer,
|
||||
div.ilAssQuestionRelatedNavigationContainer
|
||||
{
|
||||
margin: 15px 0;
|
||||
float: none;
|
||||
}
|
||||
|
||||
ul.ilAssQuestionRelatedNavigationContainer div.navbar
|
||||
{
|
||||
padding-right: 12px;
|
||||
min-height: unset;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
div.tstModalConfirmationText
|
||||
{
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
div.tstModalConfirmationButtons a,
|
||||
div.tstModalConfirmationButtons input
|
||||
{
|
||||
margin-right: 20px;
|
||||
}
|
||||
|
||||
div.ilTestOutputBlock_DynTestFinished
|
||||
{
|
||||
background-color: #FAFAFA;
|
||||
padding: 100px;
|
||||
}
|
||||
|
||||
a.il_question_answer_list_back_anchor
|
||||
{
|
||||
float:right;
|
||||
font-size:0.7em;
|
||||
margin-right:3px;
|
||||
}
|
||||
|
||||
.ilCenterForced {
|
||||
text-align: center !important;
|
||||
}
|
||||
|
||||
tr.ilBorderlessRow
|
||||
{
|
||||
margin-right: 20px;
|
||||
}
|
||||
|
||||
td.ilAssQuestSkillAssignQuestTitle div
|
||||
{
|
||||
margin-right: 20px;
|
||||
}
|
||||
|
||||
.ilAssQuestionLacExprWizard td,
|
||||
.ilAssQuestionLacExprWizard th
|
||||
{
|
||||
padding-right: 10px;
|
||||
}
|
||||
|
||||
a.il_participant_block_back_anchor,
|
||||
a.il_question_answer_list_back_anchor
|
||||
{
|
||||
float:right;
|
||||
margin-right:3px;
|
||||
}
|
||||
a.il_question_answer_list_back_anchor
|
||||
{
|
||||
font-size:0.7em;
|
||||
}
|
||||
|
||||
.test_specific_feedback td:first-child{
|
||||
padding-right: 1em;
|
||||
font-style: italic;
|
||||
font-weight: bold;
|
||||
}
|
||||
.test_specific_feedback td:last-child p:first-child{
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
p.ilAssKprimInstruction,
|
||||
p.ilAdditionalAssQuestionInstruction
|
||||
{
|
||||
font-style: italic;
|
||||
font-size: 0.9em;
|
||||
margin:5px 0 15px 0 !important;
|
||||
}
|
||||
|
||||
table.kprimchoicewizard th.optionLabel
|
||||
{
|
||||
font-size: 1.1em;
|
||||
}
|
||||
|
||||
table.imagemapareas tr.active-area, table.imagemapareas tr.active-area td {
|
||||
background-color: #fdfabb !important;
|
||||
}
|
||||
|
||||
/* fau: testNav - added and changed styles */
|
||||
|
||||
td.ilc_Page {
|
||||
padding: 15px;
|
||||
}
|
||||
|
||||
.ilTestQuestionSubtitleBlocks
|
||||
{
|
||||
margin-top: -12px;
|
||||
}
|
||||
|
||||
.ilTestMarkQuestionIcon {
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
}
|
||||
|
||||
.ilTestAnswerStatusIcon {
|
||||
display: inline-block;
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
margin-top: -3px;
|
||||
}
|
||||
|
||||
.ilTestQuestionAction.disabled a {
|
||||
color: #b0b0b0!important;
|
||||
}
|
||||
/* fau. */
|
||||
|
||||
div.ilAssClozeTest
|
||||
{
|
||||
line-height: 2.5em;
|
||||
}
|
||||
div.ilAssClozeTest input
|
||||
{
|
||||
line-height: 1.25em;
|
||||
}
|
||||
|
||||
div.ilc_Page.readonly img.imagemap,
|
||||
div.ilc_Page.readonly div.filesContainer,
|
||||
div.ilc_Page.readonly div.filesContainer a,
|
||||
div.ilc_Page.readonly div.uploadContainer input,
|
||||
div.ilc_Page.readonly div.ilAssErrorText span,
|
||||
div.ilc_Page.readonly input[disabled],
|
||||
div.ilc_Page.readonly select[disabled],
|
||||
div.ilc_Page.readonly textarea[disabled]
|
||||
{
|
||||
pointer-events: all !important;
|
||||
cursor: not-allowed !important;
|
||||
}
|
||||
|
||||
.tstAutosaveMsg
|
||||
{
|
||||
font-style: italic;
|
||||
border: 1px #666 solid;
|
||||
background-color: #ffffe0;
|
||||
position:fixed;
|
||||
z-index:99999999999;
|
||||
top:0;
|
||||
left:0;
|
||||
}
|
||||
|
||||
.textarea {
|
||||
cursor: not-allowed !important;
|
||||
border: 1px solid rgb(169, 169, 169);
|
||||
padding: 2px;
|
||||
background-color: rgb(235, 235, 228);
|
||||
min-height: 200px;
|
||||
}
|
||||
|
||||
.ilSpecificAnswerFeedback td:first-child {
|
||||
padding-right: 30px;
|
||||
}
|
||||
|
||||
.ilc_question_MultipleChoice .ilc_qanswer_Answer > div {
|
||||
vertical-align: top;
|
||||
}
|
||||
.ilc_question_SingleChoice .ilc_qanswer_Answer > div {
|
||||
vertical-align: top;
|
||||
}
|
||||
@@ -2,12 +2,16 @@
|
||||
|
||||
.ilAwarenessDropDown .popover {
|
||||
max-width: 300px;
|
||||
color: black;
|
||||
color: @il-text-color;
|
||||
min-width: 250px;
|
||||
}
|
||||
|
||||
#awareness-list {
|
||||
overflow: auto;
|
||||
.dropdown-header {
|
||||
background-color: @il-main-dark-bg;
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
}
|
||||
|
||||
.ilAwarenessDropDown .popover-content {
|
||||
@@ -30,7 +34,7 @@
|
||||
display: table;
|
||||
}
|
||||
.media:hover {
|
||||
background-color: #fea;
|
||||
background-color: @il-highlight-bg;
|
||||
}
|
||||
.glyphicon {
|
||||
font-size: inherit;
|
||||
@@ -54,11 +58,11 @@
|
||||
}
|
||||
|
||||
.ilAwarenessItem {
|
||||
border-bottom: 1px solid #e9e9e9;
|
||||
background-color: @il-main-dark-bg;
|
||||
border-bottom: 1px solid @il-main-border-color;
|
||||
background-color: @il-main-bg;
|
||||
|
||||
> div[role='button']:focus-visible {
|
||||
outline: @il-focus-outline;
|
||||
.il-focus();
|
||||
}
|
||||
|
||||
ul {
|
||||
@@ -82,7 +86,7 @@
|
||||
}
|
||||
|
||||
#awareness-content .media-body h4, #awareness-content .media-body p {
|
||||
color: #a0a0a0;
|
||||
color: @il-text-color;
|
||||
font-size: 12px;
|
||||
padding: 5px 3px 0 3px;
|
||||
line-height: 1em;
|
||||
@@ -91,7 +95,7 @@
|
||||
|
||||
#awareness-content .media-body h4 {
|
||||
padding-top: 0px;
|
||||
color: #606060;
|
||||
font-size: bold;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
@@ -104,11 +108,11 @@
|
||||
}
|
||||
|
||||
#awareness-content .dropdown-menu a {
|
||||
color: #606060;
|
||||
color: @il-text-color;
|
||||
}
|
||||
|
||||
#awareness-content .dropdown-menu a:hover {
|
||||
color: #202020;
|
||||
color: @il-text-hover-color;
|
||||
}
|
||||
|
||||
#awareness-content .arrow-down {
|
||||
@@ -184,7 +188,7 @@
|
||||
|
||||
#awareness-content .ilHighlighted {
|
||||
background-color: @il-highlight-bg;
|
||||
color: #606060;
|
||||
color: @il-text-light-color;
|
||||
}
|
||||
|
||||
.ilAwrnBadgeHidden {
|
||||
@@ -200,4 +204,4 @@
|
||||
|
||||
.ilAwarenessItem > div {
|
||||
cursor: pointer;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -49,21 +49,9 @@ span.ilProfileBadge {
|
||||
}
|
||||
|
||||
.ilBadgeDeck {
|
||||
|
||||
.il-card img {
|
||||
width: 75%;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.icon img {
|
||||
width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.modal .img-responsive {
|
||||
margin: auto;
|
||||
width: 50%;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -67,7 +67,7 @@ button.copg-add.dropdown-toggle.btn:focus,
|
||||
button.copg-add.dropdown-toggle.btn:hover,
|
||||
#copg-editor-help {
|
||||
|
||||
.glyphicon-plus-sign {
|
||||
.glyphicon-plus-sign, .il-copg-add-text {
|
||||
color: @il-btn-standard-bg;
|
||||
font-size: @il-font-size-large;
|
||||
}
|
||||
@@ -117,6 +117,7 @@ div.il_editarea_nojs {
|
||||
div.il_editarea, div.il_editarea_disabled {
|
||||
border: 2px solid transparent;
|
||||
min-height: 20px;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
.copg-state-page, .copg-state-multi {
|
||||
@@ -156,7 +157,7 @@ div.ilc_page_Page > div.il_editarea_disabled {
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
div.il_editarea_disabled {
|
||||
div.il_editarea_disabled, div.copg-disabled-page {
|
||||
border: 2px dotted @brand-warning;
|
||||
min-height: 20px;
|
||||
}
|
||||
@@ -165,7 +166,7 @@ div.il_editarea_disabled {
|
||||
color: @brand-warning;
|
||||
position: absolute;
|
||||
font-size: @font-size-small;
|
||||
margin-top: -22px;
|
||||
margin-top: -13px;
|
||||
padding: 2px 5px;
|
||||
background-color: @il-main-dark-bg;
|
||||
}
|
||||
@@ -315,6 +316,7 @@ div.il-copg-button-group-wide {
|
||||
}
|
||||
|
||||
#iltinymenu {
|
||||
padding: 0 @il-padding-xlarge-horizontal;
|
||||
.bd {
|
||||
div {
|
||||
&.last {
|
||||
@@ -545,6 +547,7 @@ a.nostyle:hover {
|
||||
}
|
||||
|
||||
#ilPageEditLegend {
|
||||
margin: 10px 0;
|
||||
> div {
|
||||
margin: 5px 0;
|
||||
}
|
||||
@@ -558,7 +561,7 @@ a.nostyle:hover {
|
||||
}
|
||||
|
||||
tr > td {
|
||||
padding: 9px;
|
||||
padding: @il-padding-base-vertical @il-padding-xlarge-horizontal;
|
||||
}
|
||||
|
||||
tr > td:first-child {
|
||||
@@ -703,7 +706,7 @@ div.ilCOPGMediaPrint {
|
||||
}
|
||||
|
||||
#copg-editor-slate-content {
|
||||
padding: 15px;
|
||||
padding: @il-padding-xlarge-vertical 0px;
|
||||
|
||||
p {
|
||||
padding: 0;
|
||||
@@ -721,10 +724,10 @@ div.ilCOPGMediaPrint {
|
||||
div.alert {
|
||||
margin: 10px 0;
|
||||
}
|
||||
form {
|
||||
form.form-horizontal {
|
||||
margin-bottom: @il-padding-xlarge-vertical;
|
||||
.ilFormHeader {
|
||||
padding: 10px;
|
||||
|
||||
padding: @il-padding-xlarge-vertical @il-padding-xlarge-horizontal;
|
||||
h3.ilHeader {
|
||||
font-size: @font-size-base;
|
||||
}
|
||||
@@ -735,10 +738,27 @@ div.ilCOPGMediaPrint {
|
||||
.control-label {
|
||||
text-align: left;
|
||||
font-weight: bold;
|
||||
min-height: auto;
|
||||
padding-bottom: 0;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.ilFormFooter {
|
||||
padding: @il-padding-base-vertical @il-padding-xlarge-horizontal;
|
||||
background-color: @il-main-bg;
|
||||
}
|
||||
}
|
||||
|
||||
> .btn-link {
|
||||
padding: 0px @il-padding-xlarge-horizontal;
|
||||
}
|
||||
}
|
||||
|
||||
#copg-top-actions {
|
||||
padding: 0 @il-padding-xlarge-horizontal;
|
||||
}
|
||||
|
||||
.copg-edit-button-group {
|
||||
padding: @il-padding-base-vertical @il-padding-xlarge-horizontal;
|
||||
}
|
||||
|
||||
p#copg-auto-save {
|
||||
@@ -791,6 +811,10 @@ p#copg-auto-save {
|
||||
th, td {
|
||||
border: 1px solid #CCCCCC;
|
||||
}
|
||||
|
||||
th {
|
||||
vertical-align: middle;
|
||||
}
|
||||
}
|
||||
|
||||
.copg-new-content-placeholder {
|
||||
@@ -812,4 +836,25 @@ p#copg-auto-save {
|
||||
height: 100%;
|
||||
top: 0;
|
||||
z-index: 9;
|
||||
}
|
||||
|
||||
.il-copg-edit-list-button {
|
||||
padding: 0;
|
||||
img {
|
||||
filter: invert(100%);
|
||||
width: 26px;
|
||||
height: 25px;
|
||||
}
|
||||
}
|
||||
|
||||
#il-copg-ed-modal .modal-content {
|
||||
.Whoops.container {
|
||||
.left-panel {
|
||||
position: static;
|
||||
float: left;
|
||||
}
|
||||
.details-container {
|
||||
position: static;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -354,5 +354,9 @@
|
||||
.input-group.date {
|
||||
& .input-group-addon {
|
||||
cursor: pointer;
|
||||
border: 1px solid @il-main-border-dark-color;
|
||||
&:last-child {
|
||||
border-left: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -132,6 +132,10 @@ table.calmini {
|
||||
color: @il-text-color;
|
||||
display:none;
|
||||
}
|
||||
a {
|
||||
display: block;
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
a.callink:link, a.callink:visited {
|
||||
@@ -184,6 +188,8 @@ th.calstd {
|
||||
border-width:1px;
|
||||
border-style:solid;
|
||||
border-color:@table-border-color;
|
||||
line-break: auto;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
td.calheadertime {
|
||||
@@ -461,3 +467,8 @@ span.calminiinactive {
|
||||
float: right;
|
||||
visibility:hidden;
|
||||
}
|
||||
|
||||
span.ilIcalIcon .btn {
|
||||
text-align: initial;
|
||||
margin-top: @il-padding-large-vertical;
|
||||
}
|
||||
@@ -58,8 +58,7 @@ div.ilListItemSection {
|
||||
}
|
||||
|
||||
div.ilContainerListItemOuterHighlight {
|
||||
padding: 15px;
|
||||
background-color: #ffffd9;
|
||||
background-color: @il-highlight-bg;
|
||||
zoom: 1;
|
||||
}
|
||||
|
||||
@@ -159,6 +158,11 @@ div.il_ContainerListItem {
|
||||
margin: 0;
|
||||
color: @panel-heading-color;
|
||||
}
|
||||
//See headings overlays input field in sorting view 32364
|
||||
.form-control {
|
||||
width: auto;
|
||||
display: inline-block;
|
||||
}
|
||||
}
|
||||
|
||||
.ilContainerBlockHeaderExpanded, .ilContainerBlockHeaderCollapsed {
|
||||
|
||||
@@ -37,7 +37,24 @@ form.form-inline {
|
||||
|
||||
.form-control:focus-visible {
|
||||
.box-shadow(none);
|
||||
outline: @il-focus-outline;
|
||||
outline: @il-focus-outline-inner;
|
||||
}
|
||||
|
||||
input[type="file"]:focus:focus-visible::after,
|
||||
input[type="radio"]:focus:focus-visible::after,
|
||||
input[type="checkbox"]:focus:focus-visible::after {
|
||||
content: none;
|
||||
}
|
||||
|
||||
input.btn.btn-default:focus-visible {
|
||||
outline: @il-focus-outline-inner;
|
||||
outline-offset: @il-focus-outline-inner-width;
|
||||
}
|
||||
|
||||
.btn-file:focus-within, .btn-file:hover:focus-within {
|
||||
z-index: 3;
|
||||
outline: @il-focus-outline-inner;
|
||||
outline-offset: @il-focus-outline-inner-width;
|
||||
}
|
||||
|
||||
textarea.form-control {
|
||||
@@ -98,11 +115,14 @@ select.form-control {
|
||||
margin-left: -20px;
|
||||
margin-top: 7px;
|
||||
min-width: 13px;
|
||||
vertical-align: top;
|
||||
@media only screen and (max-width: @grid-float-breakpoint-max) {
|
||||
min-width: 16px;
|
||||
}
|
||||
}
|
||||
.radio input[type="radio"],
|
||||
.radio-inline input[type="radio"] {
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
[dir="rtl"] .form-horizontal .control-label {
|
||||
text-align: left;
|
||||
@@ -117,6 +137,12 @@ td.form-inline > div.form-group {
|
||||
padding: 4px 0;
|
||||
}
|
||||
|
||||
input[type="radio"]:focus:focus-visible,
|
||||
input[type="checkbox"]:focus:focus-visible {
|
||||
outline: @il-focus-outline-inner;
|
||||
outline-offset: @il-focus-outline-outer-width;
|
||||
}
|
||||
|
||||
input[type="file"].form-control {
|
||||
border: none;
|
||||
height: auto;
|
||||
@@ -295,7 +321,7 @@ div.ilFormInfo {
|
||||
|
||||
input:invalid {
|
||||
background-color: #ffebeb;
|
||||
border-color: #d08080;
|
||||
border-color: @il-danger-color;
|
||||
}
|
||||
|
||||
.bootstrap-datetimepicker-widget {
|
||||
@@ -305,4 +331,10 @@ input:invalid {
|
||||
/* provisory fix for #0021322 */
|
||||
div[id$="color-picker-menu"] {
|
||||
z-index: 3;
|
||||
}
|
||||
|
||||
/* This is a memento that we should get rid of the legacy UI */
|
||||
.wzdrow input[type=file]:focus-visible {
|
||||
outline: @il-focus-outline-inner;
|
||||
outline-offset: 0;
|
||||
}
|
||||
@@ -12,7 +12,7 @@ div.ilInfoScreenSec h2.ilHeader {
|
||||
.il_InfoScreenProperty {
|
||||
padding: 15px;
|
||||
vertical-align: top;
|
||||
color: @il-neutral-light-color;
|
||||
color: @il-text-light-color;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
|
||||
@@ -5,6 +5,14 @@ div.ilAttendanceListPrint td, div.ilAttendanceListPrint th {
|
||||
padding: 2px;
|
||||
}
|
||||
|
||||
th.ilMembershipRowActionsHeader {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
th.ilMembershipRowActionsHeader span {
|
||||
padding-right: 6px;
|
||||
}
|
||||
|
||||
body.ilBodyPrint {
|
||||
height: auto;
|
||||
background-color: white;
|
||||
|
||||
@@ -64,6 +64,9 @@ input.ilMainMenuSearch {
|
||||
}
|
||||
|
||||
#il_search_toolbar {
|
||||
> div{
|
||||
padding-top: @il-padding-large-vertical;
|
||||
}
|
||||
div.ilFormOption {
|
||||
width: auto;
|
||||
}
|
||||
|
||||