Notes persist now
This commit is contained in:
parent
f2119adcef
commit
8b0760bc3d
14
Klausur.html
14
Klausur.html
|
@ -212,7 +212,7 @@
|
||||||
var on_load_time = new Date();
|
var on_load_time = new Date();
|
||||||
console.log(on_load_time.toLocaleString('sv'));
|
console.log(on_load_time.toLocaleString('sv'));
|
||||||
|
|
||||||
var inputs=["inputExamDuration","inputExtraDuration","inputEarlyCutoff","inputHelpSheet","inputSeatingRowsUsed","inputSeatingRowsFree","inputSeatingSeatsFree","inputExamTitle","inputDarkMode"];
|
var inputs=["inputExamDuration","inputExtraDuration","inputEarlyCutoff","inputHelpSheet","inputSeatingRowsUsed","inputSeatingRowsFree","inputSeatingSeatsFree","inputExamTitle","inputDarkMode","notes"];
|
||||||
function start_exam() {
|
function start_exam() {
|
||||||
document.getElementById("start_btn").onclick=""; // Aktion für den Start-Button deaktivieren
|
document.getElementById("start_btn").onclick=""; // Aktion für den Start-Button deaktivieren
|
||||||
document.getElementById("start_btn").innerHTML=""; // Start-Button entfernen
|
document.getElementById("start_btn").innerHTML=""; // Start-Button entfernen
|
||||||
|
@ -483,6 +483,18 @@
|
||||||
document.getElementById("inputDarkMode").value=document.getElementById("inputDarkMode").checked;
|
document.getElementById("inputDarkMode").value=document.getElementById("inputDarkMode").checked;
|
||||||
}
|
}
|
||||||
document.getElementById("inputDarkMode").onchange();
|
document.getElementById("inputDarkMode").onchange();
|
||||||
|
|
||||||
|
document.getElementById("notes").onchange=function() {
|
||||||
|
var queryString="";
|
||||||
|
for(var i in inputs) {
|
||||||
|
queryString+="&"+inputs[i]+"="+encodeURIComponent(document.getElementById(inputs[i]).value);
|
||||||
|
}
|
||||||
|
if(document.getElementById("inputExamStart").value!="") {
|
||||||
|
queryString+="&inputExamStart="+encodeURIComponent(document.getElementById("inputExamStart").value);
|
||||||
|
}
|
||||||
|
queryString="?"+queryString.substr(1);
|
||||||
|
window.history.pushState({},"", queryString);
|
||||||
|
}
|
||||||
if(("inputExamStart" in get_params)) {
|
if(("inputExamStart" in get_params)) {
|
||||||
console.log(document.getElementById("fullscreen_btn").style.display="block");
|
console.log(document.getElementById("fullscreen_btn").style.display="block");
|
||||||
settingsFormSubmitFunc();
|
settingsFormSubmitFunc();
|
||||||
|
|
Loading…
Reference in New Issue